aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/noreturn-7.C
blob: a869b7016fe84f1beb11ce4af40eec746427f44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/30988
// { dg-do compile }
// { dg-options "-O2 -Wall" }

void f (const char *) __attribute__ ((noreturn));
void f (int);
void f (double) __attribute__ ((noreturn));

template <typename T> struct A
{
  int g ()
  {
    f ((T) 0);
  }	// { dg-warning "no return statement in function returning non-void" }
};