Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
is_trivially_constructible5.C
blob: 15ea33675ed774d415a7da010d5604dd9a12f5ab [
file
] [
log
] [
blame
]
// PR c++/80991
// { dg-do compile { target c++11 } }
template
<bool>
void
foo
()
{
static_assert
(
__is_trivially_constructible
(
int
,
int
),
""
);
}
void
bar
()
{
foo
<true>
();
}