blob: f13d58745cafde1fbe81994940778ef25e7a96a4 [file] [log] [blame]
// PR middle-end/19583
// { dg-options "-Wreturn-type -O" }
struct E{};
inline int bar() throw(E)
{
return 0;
}
void foo ()
{
bar();
}