Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / ref3.C
blob4390f71b4077455ac7386407b9ec213b8aef7d14
1 // PR c++/28341
3 template<const int&> struct A {};
5 template<typename T> struct B
7   A<(T)0> b; // { dg-error "constant" }
8   A<T(0)> a; // { dg-error "constant" }
9 };
11 B<const int&> b;