view gcc/testsuite/g++.dg/template/cond2.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// 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);
}