blob: 0a013abd73eeaf892ce6ecb396e5e0b331b7681d [file] [log] [blame]
// Bug: g++ only looks in the current temporary binding level for a name.
struct T { ~T(); };
main()
{
foo:
T t; // ERROR - redeclared
bar:
T t; // ERROR - redeclaration
}