[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-245.cs
blob84286b042f22396b72970dc5d9995c7d748fbf80
1 using System;
3 class DerivedGenericClass<T> : BaseClass
5 public override void Foo () {}
7 public void Baz ()
9 Foo ();
13 abstract class BaseClass
15 public abstract void Foo ();
18 class X
20 public static void Main ()