aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wreturn-2.C
blob: 460afd53a8c48962298a2228a58f57713fed813f (plain)
1
2
3
4
5
6
7
// { dg-do compile }
int foo(int first) {
  while (true) {
    return first;
  }
} // { dg-bogus "control reaches" }