aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/noreturn-5.C
blob: 77d4890df2fb43c8dfcefc65cdfffe13d568828f (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) __attribute__ ((noreturn));
void f (double) __attribute__ ((noreturn));

template <typename T> struct A
{
  int g ()
  {
    f ((T) 0);
  }
};