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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
union2.C
blob
5d7e9c85cee14eab21423bb2e2229b0f78d0c973
1
// { dg-do assemble }
2
// GROUPS passed unions
3
class B;
4
5
struct A {
6
A(B* x) : i(x) {}
7
A() : i(0) {}
8
9
union {
10
B* i;
11
B* c;
12
};
13
};