Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-sassert.C
blob: 7f82671b442527194c4cc3da133dd1d7b65841ad [
file
] [
log
] [
blame
]
// Allow static_assert in constexpr constructors, too.
// { dg-do compile { target c++11 } }
template
<
typename
T
>
struct
A
{
int
i
;
constexpr
A
(
int
i
)
:
i
(
i
)
{
static_assert
(
sizeof
(
T
)
==
1
,
""
);
}
};