Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
access1.C
blob: e463ef4c451fc6c2da71169c8f1ff5856e2d015a [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
X
{
unsigned
int
i
;
public
:
void
f
();
};
void
X
::
f
()
{
union
{
int
foo
[
sizeof
(
i
)];
};
}