OSDN Git Service

PR target/22076
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / explicit1.C
1 // { dg-do compile }
2
3 // Origin: stefaandr@hotmail.com
4
5 // PR c++/12403: ICE when explicit specialization is not in
6 // namespace scope.
7
8 struct foo { 
9         template<typename T> void bar (T &t) {}
10         template<> void bar<double>(double &t) {} // { dg-error "non-namespace|template|function" }
11 };