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
/
cpp0x
/
union7.C
blob
c42d2177ab0dc67a8d3d297f5b7cb16ace901cc3
1
// PR c++/69131
2
// { dg-do compile { target c++11 } }
3
4
struct X
5
{
6
~X() {}
7
};
8
9
union U
10
{
11
X x;
12
~U() {}
13
};
14
15
U u;