[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-619.cs
blob63bc79c5958826d7de8330498ea91276efce54c7
1 interface I<T>
5 interface IB<T> : I<string>
10 struct S
12 class P
16 public class C : IB<P>
21 class M
23 static void Test<T> (I<T> iface)
27 static void Test<T> (IB<T> iface)
31 static void Main ()
33 Test (new S.C ());