Remove inadvertent commit

From-SVN: r70942
This commit is contained in:
Mark Mitchell 2003-08-30 01:43:21 +00:00
parent 7433e6d470
commit 5be4b5c92b

View File

@ -1,10 +0,0 @@
// { dg-options "" }
template<int X> class c;
template<int X, int Y> int test(c<X ? : Y>&);
void test(c<2>*c2) {
test<0, 2>(*c2);
}