Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-224.cs
1 class Base
2 {
3         public virtual void Foo<T> () {}
4 }
5
6 class Derived : Base
7 {
8         public override void Foo <T> () {}
9 }
10
11 class Driver
12 {
13         public static void Main ()
14         {
15                 new Derived ().Foo<int> ();
16         }
17 }
18