[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-565.cs
blob9d45231e9e2c811fa5dbd3615f74bb48abb59375
1 using System;
3 public class B<T>
7 public class B2 : B<object>
11 public class C
13 public static void Test<T, I> () where T : B<I>, I
15 Foo<T, I> ();
18 public static void Foo<T, I> () where T : B<I>, I
22 public static int Main ()
24 Test<B2, object> ();
25 return 0;