PR c++/72707
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wshadow-12.C
blob95dc5beb96c947979168af692f095bd5b6a89dcb
1 // PR c++/72707
2 // { dg-do compile }
4 void
5 foo (double x)
7   union { int x; };     // { dg-error "shadows a parameter" }
8   x = 0;