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
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
complit13.C
blob
c12678ba864c4a32bb7002b046110d2c489974c4
1
// PR c++/10207
2
// { dg-options "" }
3
4
typedef struct { } EmptyStruct;
5
typedef struct { EmptyStruct Empty; } DemoStruct;
6
7
void Func()
8
{
9
DemoStruct Demo;
10
Demo.Empty = (EmptyStruct) {};
11
}