[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-627.cs
blob62f367ae3cce747bef8a25c43956220d78873384
1 using System;
3 interface A {
4 void B ();
7 interface X {
8 void B ();
12 class B : A, X {
13 void X.B () {}
14 void A.B () {}
18 namespace N {
19 interface B {
23 class M {
24 static void N (object N)
26 object x = (N.B) N;
29 public static void Main ()