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>2010-03-30 21:11:40 +0400
committerMarek Safar <marek.safar@gmail.com>2010-03-30 21:11:40 +0400
commitc4054c963ca58245c2dee9ca1599ec14b325499f (patch)
tree0d99abb1b4bdb6c7bc7d118f7315037aaac7e902 /mcs/tests/test-747.cs
parent7109be8d2563077422783de67f14b08d766a3422 (diff)
New test.
svn path=/trunk/mcs/; revision=154468
Diffstat (limited to 'mcs/tests/test-747.cs')
-rw-r--r--mcs/tests/test-747.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/mcs/tests/test-747.cs b/mcs/tests/test-747.cs
new file mode 100644
index 00000000000..b0a7371b26e
--- /dev/null
+++ b/mcs/tests/test-747.cs
@@ -0,0 +1,26 @@
+using System;
+
+class B : A
+{
+ protected class BNested : ANested
+ {
+ }
+}
+
+class A : AA
+{
+}
+
+class AA
+{
+ protected class ANested
+ {
+ }
+}
+
+class M
+{
+ public static void Main ()
+ {
+ }
+}