Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
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
)];
};
}