OSDN Git Service

26f7ca53f293c4d6cddfaa2d53cdb1ba60e314e7
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error10.C
1 // PR c++/21930
2 // Test case by Volker Reichelt
3 // { dg-do compile }
4
5 template<int> struct A {};
6
7 template<int N>
8 void foo(const A<N> &a)
9 { -A<N>(a); } // { dg-error "\\(\\* & a\\)" "" }
10
11 void bar()
12 {
13     foo(A<0>()); // { dg-message "instantiated from here" "" }
14 }
15