Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wshadow-11.C
blob: d3b70c39acec1f2c24740a51e17efdfdc15c64a9 [
file
] [
log
] [
blame
]
// PR c++/56100
// { dg-options "-Wshadow" }
int
foo
;
// { dg-message "shadowed declaration" }
struct
bar
{
template
<
typename
T
>
void
baz
()
{
int
foo
;
}
// { dg-warning "shadows a global" }
};
int
main
()
{
bar
().
baz
<int>
();
}