repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
decl-specifier-1.C
blob
5c39b602de58cc3ef4e2f6fdd8d90f908cfa30a1
1
// Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
2
// Origin: PRs 7721 and 7803
3
// { dg-do compile }
4
5
namespace N
6
{
7
template<typename>
8
struct X { };
9
}
10
11
N::X X; // { dg-error "" "" }
12
13
int main()
14
{
15
return sizeof(X); // { dg-prune-output "not declared in this scope" }
16
}