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++/27177
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.bob
/
nested1.C
blob
37dd2d0545a2278cc18223332130d5261db10469
1
// { dg-do assemble }
2
3
struct A {
4
struct B {
5
typedef long T;
6
int i;
7
};
8
};
9
struct C {
10
struct B {
11
typedef float T;
12
int i;
13
};
14
};
15
16
C::B::T a;