1 // DR 1351, Problems with implicitly-declared exception-specifications
2 // { dg-do compile { target c++11 } }
5 virtual void f() noexcept;
7 virtual void h() noexcept = delete;
11 void f(); // { dg-error "looser" }
12 void g() noexcept; // OK
13 void h() = delete; // OK