blob: 26fb45656dac3e6f4ed40ec990aca80370f2ab95 [file] [log] [blame]
// Test that the integer hides the struct in block scope.
int main ()
{
int A;
struct A { };
A = 1;
}