Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / cond2.C
blobabb6ebb5d4676a0497c6386a5fa5222601d85e88
1 // PR c++/11962
2 // { dg-options "" }
4 template<int X> class c;
6 template<int X, int Y> int test(c<X ? : Y>&);
8 void test(c<2>*c2) {
9         test<0, 2>(*c2); // { dg-error "omitted" }