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>2006-02-10 13:19:57 +0300
committerMartin Baulig <martin@novell.com>2006-02-10 13:19:57 +0300
commit400f72e13dfc744e8574ad1c155521709b5ddf7b (patch)
tree4008e6ca1fd02b040545f5fac4fcae66db8f6112 /mcs/tests/gtest-245.cs
parent5b0a22a7832ec586c97ee85cca94f0ca570c22d6 (diff)
New tests.
svn path=/trunk/mcs/; revision=56750
Diffstat (limited to 'mcs/tests/gtest-245.cs')
-rw-r--r--mcs/tests/gtest-245.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/mcs/tests/gtest-245.cs b/mcs/tests/gtest-245.cs
new file mode 100644
index 00000000000..dbd6d28a41e
--- /dev/null
+++ b/mcs/tests/gtest-245.cs
@@ -0,0 +1,23 @@
+using System;
+
+class DerivedGenericClass<T> : BaseClass
+{
+ public override void Foo () {}
+
+ public void Baz ()
+ {
+ Foo ();
+ }
+}
+
+abstract class BaseClass
+{
+ public abstract void Foo ();
+}
+
+class X
+{
+ static void Main ()
+ {
+ }
+}