aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/crash55.C
blob: 3faa538253b29e6d938906c1bf7e21fd29edc06d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile }
// GROUPS passed old-abort
      extern int f(int); // { dg-message "old declaration" }

      int& f(int x)  // { dg-error "new declaration" }
      {
          int local; // { dg-warning "reference to local" }

          local = x+2;
      
          return local;
      }