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:
authorRaja R Harinath <harinath@hurrynot.org>2005-05-05 14:17:03 +0400
committerRaja R Harinath <harinath@hurrynot.org>2005-05-05 14:17:03 +0400
commitfe291a3db18a01216baed9a0ab84f45fe91f65ea (patch)
tree93ee445ce63bc0731c54d8131272caed586da00e /mcs/tests/test-375.cs
parentb30bb3918f3d90e7211fcd009c87d0afd1aa603d (diff)
Oops.
svn path=/trunk/mcs/; revision=44070
Diffstat (limited to 'mcs/tests/test-375.cs')
-rw-r--r--mcs/tests/test-375.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-375.cs b/mcs/tests/test-375.cs
new file mode 100644
index 00000000000..e4d74b1c32c
--- /dev/null
+++ b/mcs/tests/test-375.cs
@@ -0,0 +1,18 @@
+class a
+{
+ protected class b
+ {
+ }
+}
+
+class c : a
+{
+ b a_var;
+
+ protected class d
+ {
+ b d_var;
+ }
+
+ static void Main () {}
+}