aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wreturn-type-1.C
blob: fb9a862913955b41ca719648ab48025cc1510a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/11725
// { dg-options "-Wreturn-type" }

template <class T>
struct A 
{
  int foo()
  {
    throw "Stop";
  }
};