Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.dg
/
eh
/
catch5.C
blob: 6001b566e0731df2a5a10513b7874c21746d4cb6 [
file
] [
log
] [
blame
]
// PR c++/31411
struct
allocator
{
~
allocator
()
throw
();
};
struct
string
{
string
(
const
string
&
str
,
const
allocator
&
al
=
allocator
());
};
int
main
()
{
try
{}
catch
(
string
smess
)
{}
}