PR c++/79899
[official-gcc.git] / gcc / testsuite / g++.dg / other / error10.C
blob546a4d65c4a74777c7a0979c57484e36deff7b95
1 // PR c++/21930
2 // Test case by Volker Reichelt
3 // { dg-do compile }
5 template<int> struct A {};
7 template<int N>
8 void foo(const A<N> &a)
9 { -A<N>(a); } // { dg-error "operand type is 'A<0>'" }
11 void bar()
13     foo(A<0>()); // { dg-message "required from here" "" }