blob: 2da814db9d632a24426ccf6c550c2eb602fce221 [file] [log] [blame]
// PR c++/24580
// { dg-do run }
struct vbase {};
struct foo : virtual vbase
{
foo()
{
throw "exception in foo ctor";
}
};
struct bar : public foo {};
int main()
{
try
{
bar a;
}
catch ( ... ) { }
return 0;
}