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>2009-11-26 20:53:37 +0300
committerMarek Safar <marek.safar@gmail.com>2009-11-26 20:53:37 +0300
commit41a8fcd2e1f02b7c7ac2cafb354429799442b317 (patch)
treead0cbabb53a2b7032a0824f48e91b6e2096c2510 /mcs/tests/test-735.cs
parent082ace58aace913287d97b08a2e47ef4f9e87c67 (diff)
New test.
svn path=/trunk/mcs/; revision=147005
Diffstat (limited to 'mcs/tests/test-735.cs')
-rw-r--r--mcs/tests/test-735.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/tests/test-735.cs b/mcs/tests/test-735.cs
new file mode 100644
index 00000000000..b83b896183c
--- /dev/null
+++ b/mcs/tests/test-735.cs
@@ -0,0 +1,20 @@
+using System;
+
+public class B
+{
+ public class C
+ {
+ class X
+ {
+ public D field;
+ }
+
+ public static void Main ()
+ {
+ }
+ }
+
+ class D
+ {
+ }
+}