[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-318.cs
blobb443fff1a33b846cf03cf1a87b98009e5a4389dc
1 // Bug #77963
2 public class Foo<K>
6 public class Bar<Q> : Goo<Q>
8 public class Baz
13 public class Goo<Q> : Foo<Bar<Q>.Baz>
17 class X
19 public static void Main ()
21 Bar<int> bar = new Bar<int> ();
22 System.Console.WriteLine (bar);