PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / return-reference2.C
blob190266215a1eb2a917942249332ceadf23e7091c
1 // PR c++/26671
3 class A
5 public:
6   int first;
7   int second;
9 };
11 int &f()
13   A a;                          // { dg-warning "local" }
14   return a.second;
17 int &g()
19   int ar[42];                   // { dg-warning "local" }
20   return ar[20];