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

template <class=void> struct number {
  number() noexcept(noexcept(0)) { }
};
const int z=__has_nothrow_constructor(number<>);