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:
authorMartin Baulig <martin@novell.com>2003-08-27 00:17:25 +0400
committerMartin Baulig <martin@novell.com>2003-08-27 00:17:25 +0400
commit6837ddbab49195d22d0cb7c29fed600f3cb12cab (patch)
tree15a642e02fd04d784a5160586ae8dc8bd9a89d23 /mcs/tests/test-215.cs
parentfb235e91a6af1d03f2e185d29f9933c6b7bc7527 (diff)
2003-08-26 Martin Baulig <martin@ximian.com>
* test-215.cs: New test for bug #47927. svn path=/trunk/mcs/; revision=17636
Diffstat (limited to 'mcs/tests/test-215.cs')
-rw-r--r--mcs/tests/test-215.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/tests/test-215.cs b/mcs/tests/test-215.cs
new file mode 100644
index 00000000000..073d2f4eb11
--- /dev/null
+++ b/mcs/tests/test-215.cs
@@ -0,0 +1,21 @@
+using C1 = N1.C1;
+
+public class Test {
+ private static C1 c1 = null;
+
+ public static C1 C1 {
+ get {
+ return c1;
+ }
+ }
+
+ public static int Main() {
+ C1 tmp = C1;
+ return 0;
+ }
+}
+
+namespace N1 {
+ public class C1 {
+ }
+}