OSDN Git Service

PR c++/39554
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wreturn-type-1.C
1 // PR c++/11725
2 // { dg-options "-Wreturn-type" }
3
4 template <class T>
5 struct A 
6 {
7   int foo()
8   {
9     throw "Stop";
10   }
11 };