Merged into single file, added assertions
[mono.git] / mcs / tests / gtest-245.cs
1 using System;
2
3 class DerivedGenericClass<T> : BaseClass
4 {
5         public override void Foo () {}
6
7         public void Baz ()
8         {
9                 Foo ();
10         }
11 }
12
13 abstract class BaseClass
14 {
15         public abstract void Foo ();
16 }
17
18 class X
19 {
20         static void Main ()
21         {
22         }
23 }