PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wshadow-10.C
blob21d50020059062f22cbfe57e37cd86991a1cc188
1 // PR c++/56100
2 // { dg-options "-Wshadow" }
4 struct bar
6   template <typename T>
7   void baz () { int foo; }
8 };
10 int foo;
12 int main ()
14   bar ().baz <int> ();