PR c++/67273
[official-gcc.git] / gcc / testsuite / g++.dg / parse / decl-specifier-1.C
blob5c39b602de58cc3ef4e2f6fdd8d90f908cfa30a1
1 // Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
2 // Origin: PRs 7721 and 7803
3 // { dg-do compile }
5 namespace N
7     template<typename> 
8     struct X { };
11 N::X X;                           // { dg-error "" "" }
13 int main()
15     return sizeof(X);       // { dg-prune-output "not declared in this scope" }