summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/g++.dg/template/cond2.C
blob: abb6ebb5d4676a0497c6386a5fa5222601d85e88 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/11962
// { 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); // { dg-error "omitted" }
}
OpenPOWER on IntegriCloud