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>2007-10-18 15:47:09 +0400
committerMarek Safar <marek.safar@gmail.com>2007-10-18 15:47:09 +0400
commit047a7b6ff94c77d6a5d3b4eefd16de3b79cda35a (patch)
tree07e51799fd441116cf4bad30aebc482991312eeb /mcs/tests/test-390.cs
parent34e097b93a8f4277b6e6865aa4887a04c10a6aa3 (diff)
New test.
svn path=/trunk/mcs/; revision=87745
Diffstat (limited to 'mcs/tests/test-390.cs')
-rw-r--r--mcs/tests/test-390.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/mcs/tests/test-390.cs b/mcs/tests/test-390.cs
new file mode 100644
index 00000000000..ca797208cc1
--- /dev/null
+++ b/mcs/tests/test-390.cs
@@ -0,0 +1,26 @@
+class C
+{
+ class O : M
+ {
+ public override void Foo ()
+ {
+ }
+ }
+
+ class N
+ {
+ public virtual void Foo ()
+ {
+ }
+ }
+
+ class M : N
+ {
+ }
+
+ public static void Main ()
+ {
+ }
+}
+
+