Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-485.cs
1 public interface ITestBase<TInterface>
2 { }
3
4 public interface ITestSub1 : ITestBase<ITestSub2>
5 { }
6
7 public interface ITestSub2 : ITestSub1
8 { }
9
10 class C
11 {
12         public static void Main ()
13         {
14         }
15 }