PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / ref-temp1.C
blob26f1ca5de84b6945a0f5dce80c9ad6fa62fd6799
1 // PR c++/986
2 // { dg-options "-Wall -Wextra" }
4 struct X { X (int); };
6 struct Y {
7   Y ();
8   const X &x;                   // note the ampersand
9 };
11 Y::Y () : x(1) {}               // { dg-warning "temporary" }