[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / cond2.C
blobe6bd19d40fa85a33d2cb458a0ed72639a6f47acf
1 // PR c++/11962
2 // { dg-options "" }
4 template<int X> class c;
6 template<int X, int Y> int test(c<X ? : Y>&); // { dg-error "omitted" }
8 void test(c<2>*c2) {
9         test<0, 2>(*c2);