// { dg-options -std=c++0x } 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