Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
static_assert10.C
blob: 5ff085487cc552aa86745624f42f07482bbb0f0d [
file
] [
log
] [
blame
]
// PR c++/60254
// { dg-do compile { target c++11 } }
template
<
typename
T
>
bool
foo
(
T
)
{
int
i
;
static_assert
(
foo
(
i
),
"Error"
);
// { dg-error "non-constant condition|not usable|non-.constexpr." }
return
true
;
}