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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
init8.C
blob
bd49ce2eeed079d57f106377059406ea4ec88f81
1
// { dg-do assemble }
2
// GROUPS passed initialization
3
class A
4
{
5
public:
6
A(const A & a) : i_member(a.i_member)
7
{
8
}
9
A(const int & i) : i_member(i)
10
{
11
}
12
union
13
{
14
int i_member;
15
};
16
};