// Test that we handle merging with deferred noexcept. // { dg-do compile { target c++11 } } template struct O { template void f() noexcept(noexcept(T())); }; template<> template<> void O::f() noexcept { }