blob: f46320db2117f3d82483fbc224138570e73c3840 [file] [log] [blame]
// PR c++/91581 - ICE in exception-specification of defaulted ctor.
// { dg-do compile { target c++11 } }
struct A {
A() noexcept(sizeof(A)) = default;
};
A a;