Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
anon-struct8.C
blob: f4e3f11b6789c01192e3020b5360bcf7547e35e5 [
file
] [
log
] [
blame
]
// { dg-options "" }
struct
A
{
};
struct
B
{
struct
:
A
{
int
i
;
};
// { dg-error "anonymous struct with base" }
};
union
U
{
struct
:
A
{
int
i
;
};
// { dg-error "anonymous struct with base" }
};