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>();
}