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

template <class T, class... Args> void bar() {
  static_assert(__is_nothrow_constructible(T, Args...), "");
}

template void bar<int>();
template void bar<int,int>();