// PR c++/55842 // { dg-do compile { target c++11 } } template struct number { number() noexcept(noexcept(0)) { } }; const int z=__has_nothrow_constructor(number<>);