Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
is_std_layout1.C
blob: 007c94a453ca50248c54829fe74fd2c3b5b57222 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<int>
struct
E
{
};
struct
E1
:
E
<
0
>,
E
<
1
>
{
};
struct
E2
:
E
<
2
>,
E
<
3
>
{
};
struct
A1x
{
int
n
;
};
struct
D2
:
A1x
,
E1
,
E2
{
};
#define
SA
(
X
)
static_assert
((
X
),#
X
)
SA
(
__is_standard_layout
(
D2
));