Commit de278905 by Jason Merrill

new

From-SVN: r24302
parent ac31b8d9
// Test for handling of type shadowing in function scope.
int main()
{
int A = 42;
struct A
{
enum { a };
};
A = A::a;
return A;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment