Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-empty1.C
blob: 66d94e538240c986d39b839fb2ab383b294f3960 [
file
] [
log
] [
blame
]
// PR c++/82764
// { dg-do compile { target c++11 } }
struct
Empty
{};
struct
Empty2
:
Empty
{};
struct
A
:
Empty2
{
int
x
{
1
};
int
y
{
2
};
};
struct
B
{
A a
{};
};
B b
;