Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2011-12-14 16:42:44 +0400
committerMarek Safar <marek.safar@gmail.com>2011-12-14 16:45:05 +0400
commit14539704bcb8e0f6cf8ea3d1f6404f688c6d902e (patch)
tree4050b3b0b354e99aae0431d9703d91cbcaf2bfb9 /mcs/tests/test-835.cs
parent112cc0bb77067ef20055a66f21aeef7b830219bd (diff)
Refactor namespace using parsing to work with MD, clean up resolve code from doppelganger
Diffstat (limited to 'mcs/tests/test-835.cs')
-rw-r--r--mcs/tests/test-835.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-835.cs b/mcs/tests/test-835.cs
new file mode 100644
index 00000000000..c3734807c4d
--- /dev/null
+++ b/mcs/tests/test-835.cs
@@ -0,0 +1,15 @@
+using C = A.D;
+using System;
+
+class AA
+{
+ internal class D : Exception { }
+}
+
+class A : AA
+{
+ public static void Main()
+ {
+ object o = new C();
+ }
+}