repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/72707
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wshadow-12.C
blob
95dc5beb96c947979168af692f095bd5b6a89dcb
1
// PR c++/72707
2
// { dg-do compile }
3
4
void
5
foo (double x)
6
{
7
union { int x; }; // { dg-error "shadows a parameter" }
8
x = 0;
9
}