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) {}
}