blob: de9748d8b902ff9c6fb1ed75e19fac63e2016c47 [file] [log] [blame]
// PR c++/57682
// { dg-do compile { target c++11 } }
struct Class
{
Class (int func)
try
: f { func } { }
catch ( ... ) { }
private:
int f;
};