blob: 55726a5d61318204ca26736f36506787a879b3a7 [file] [log] [blame]
// Test for handling of type shadowing in function scope.
int main()
{
int A = 42;
struct A
{
enum { a };
};
A = A::a;
return A;
}