[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-559.cs
blob5f46db374f4b902b0bbb7e8f183a451dd975c62d
1 interface I<T>
5 interface A<Source>
7 void Test<U> () where U : I<Source>;
10 struct B<TContext> : A<int>
12 public void Test<U2> () where U2 : I<int>
17 class C : I<int>
19 public static void Main ()
21 new B<string> ().Test<C> ();