// { dg-do compile { target c++11 } } template constexpr T value(T t) { return t; } template struct is_funny { static constexpr bool value = false; }; template void eval() noexcept(value(is_funny::value)) {} constexpr bool ok = noexcept(eval()); // line 12