blob: 1691ed430e117b1a00ba7c3095d81613d89e741d [file] [log] [blame]
// Bug: g++ thinks that the i in g() shadows the parm from f()
// Contributed by Jason Merrill <jason@cygnus.com>
// Build don't link:
void f (int i)
{
struct A {
void g () {
int i;
}
};
}