PR middle-end/19583
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wreturn-type-3.C
blobf13d58745cafde1fbe81994940778ef25e7a96a4
1 // PR middle-end/19583
2 // { dg-options "-Wreturn-type -O" }
4 struct E{};
6 inline int bar() throw(E)
8   return 0;
11 void foo ()
13   bar();