Toggle the turbo button
[mono.git] / mcs / tests / gtest-565.cs
1 using System;
2
3 public class B<T>
4 {
5 }
6
7 public class B2 : B<object>
8 {
9 }
10
11 public class C
12 {
13         public static void Test<T, I> () where T : B<I>, I
14         {
15                 Foo<T, I> ();
16         }
17
18         public static void Foo<T, I> () where T : B<I>, I
19         {
20         }
21         
22         public static int Main ()
23         {
24                 Test<B2, object> ();
25                 return 0;
26         }
27 }
28