blob: e6bd19d40fa85a33d2cb458a0ed72639a6f47acf [file] [log] [blame]
// PR c++/11962
// { dg-options "" }
template<int X> class c;
template<int X, int Y> int test(c<X ? : Y>&); // { dg-error "omitted" }
void test(c<2>*c2) {
test<0, 2>(*c2);
}