Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-604.cs
1 class A<T>
2 {
3         public interface IB { }
4 }
5
6 class E : A<int>.IB, A<string>.IB
7 {
8         public static void Main ()
9         {
10                 new E ();
11         }
12 }