[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-947.cs
blobf2f8cbb862819a97718d78b667fe76e3c47700f1
1 interface IA
3 int Prop { get; }
4 int this [int arg] { get; }
7 abstract class B : IA
9 public long Prop => 4;
11 int IA.Prop => 1;
13 public long this [int arg] => 2;
15 int IA.this [int arg] => 4;
18 class C : B, IA
20 public static void Main ()
24 public new string Prop {
25 get { return ""; }
28 public new string this [int arg] => "2";