[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-022.cs
blob8b9cdfd52e2dbd2b459e702241949aaebc605e5c
1 // A non-generic type may have a closed constructed type as its parent
3 class Foo<T>
5 public void Hello ()
6 { }
8 public void World (T t)
10 Hello ();
14 class Bar : Foo<int>
16 public void Test ()
18 Hello ();
19 World (4);
23 class X
25 public static void Main ()
27 Bar bar = new Bar ();
28 bar.Test ();