aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup7.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/lookup7.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/lookup7.C12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup7.C b/gcc/testsuite/g++.old-deja/g++.other/lookup7.C
new file mode 100644
index 00000000000..55726a5d613
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.other/lookup7.C
@@ -0,0 +1,12 @@
+// Test for handling of type shadowing in function scope.
+
+int main()
+{
+ int A = 42;
+ struct A
+ {
+ enum { a };
+ };
+ A = A::a;
+ return A;
+}