OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[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 };