blob: 3b67e77752f4024292ec66e9a6aa93e2d3405359 [file] [log] [blame]
// { dg-do assemble }
// Bug: g++ thinks that the i in g() shadows the parm from f()
// Contributed by Jason Merrill <jason@cygnus.com>
void f (int i)
{
struct A {
void g () {
int i;
}
};
}