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
predicate aware uninitialized analysis
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
error32.C
blob
aad961bcbe36d4e0e7cd8cfc7f6e5918a1b56a3e
1
/* PR c++/37555 */
2
/* { dg-do "compile" } */
3
4
struct A {};
5
6
typedef void (A::T)(); /* { dg-error "typedef name may not be a nested-name-specifier" } */
7
8
void foo()
9
{
10
T t;
11
t; /* { dg-error "was not declared" } */
12
}