* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept12.C
blob185364b0f8b2b6fcd7fb2a88d758d22032d0c92a
1 // Test that we handle merging with deferred noexcept.
2 // { dg-do compile { target c++11 } }
4 template <class U>
5 struct O
7   template <class T>
8   void f() noexcept(noexcept(T()));
9 };
11 template<> template<> void O<int>::f<int>() noexcept { }