OSDN Git Service

PR testsuite/25241
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash80.C
1 // PR c++/37087
2
3 namespace a {
4   template <typename T> class Foo;
5 }
6
7 namespace b {
8   template <> class ::a::Foo<double> {}; // { dg-error "global qualification of class name is invalid" }
9 }