(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
is_trivially_constructible5.C
// PR c++/80991
// { dg-do compile { target c++11 } }

template<bool> void foo()
{
  static_assert(__is_trivially_constructible(int, int), "");
}

void bar()
{
  foo<true>();
}