[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-526.cs
blobe280f5df37c81d37c13a2356d69b79c7d52356b3
1 class A<U>
3 protected int foo;
6 class B<T> : A<T>
8 protected class N
10 public void Test (C b)
12 var v = b.foo;
17 class C : B<int>
19 public static void Main ()
21 new C.N ().Test (new C ());