blob: 35358749e1d082e9e85d913627497ecaf9ac20fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// { dg-do compile }
// Origin: stefaandr@hotmail.com
// PR c++/12403: ICE when explicit specialization is not in
// namespace scope.
struct foo {
template<typename T> void bar (T &t) {}
template<> void bar<double>(double &t) {} // { dg-error "non-namespace|template|function" }
};
|