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
* ru.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr30898.C
blob
4c06ea608454246b82a9d65300cc0928e363262a
1
// { dg-do compile }
2
3
double foo()
4
{
5
union
6
{
7
int i;
8
double d;
9
};
10
11
i = 0;
12
return d;
13
}