Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
noexcept55.C
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
;