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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-union7.C
blob
e2e46f429764ad08423503427bd0a7cf71f86f81
1
// PR c++/98423
2
// { dg-do compile { target c++11 } }
3
4
struct A{
5
A(){}
6
};
7
union C{
8
A a;
9
int b = 0;
10
};
11
int main(){
12
C c;
13
}