2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / error10.C
blob33fbee5687effe104f00396c188546d5dbedf29a
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" }