aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/crash52.C
blob: 1318ea6e9fef73e59ffd7ca8a725c321427a1274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do assemble  }
// { dg-options "-Wreturn-type" }
// GROUPS passed old-abort
#include <iostream>

class A {
public:
  friend A f(A &a);// { dg-message "old declaration" }
};

A &f(A &a) {// { dg-error "new declaration" }
  std::cout << "Blah\n";
} // { dg-warning "no return statement" }