repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
anon2.C
blob
98d8c20653b694c3ecaaa5edaff423e767e9a875
1
// Test that we can have an unnamed struct inside an anonymous union.
2
3
struct A
4
{
5
union
6
{
7
struct { int i; } foo;
8
};
9
};
10
11
static union
12
{
13
struct { int i; } foo;
14
};
15
16
int main ()
17
{
18
union
19
{
20
struct { int i; } bar;
21
};
22
}