Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
constexpr-void1.C
blob: 10ef5bc8a6e8226e66fc32f481622336ca7c47c9 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++14 } }
struct
S
{
int
i
=
20
;
constexpr
void
foo
(
void
)
{
if
(
i
>
20
)
__builtin_abort
();
}
};