aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wreturn-type-6.C
blob: 45ec95236b6e456d9732f09fc32d2d6f06e33929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c++/40749 */
/* { dg-do compile } */
/* { dg-options "-Wreturn-type" } */

struct A {};
const A a() {} /* { dg-warning "no return statement" } */
const A& b() {} /* { dg-warning "no return statement" } */

const int c() {} /* { dg-warning "no return statement" } */

template<class T>
const int foo(T t) {} /* { dg-warning "no return statement" } */
int d = foo<int>(0), e = foo<int>(1);