[tuner] handle the case with multiple "preserve" attributes
[mono-project.git] / mcs / tests / test-891.cs
blobc6b51401e06976e941fab388ffc6612ac4497cfb
1 interface I
3 int P { get; }
6 class B : I
8 int I.P { get { return 1; } }
11 class C : B
13 public int get_P ()
15 return 1;
18 public static void Main ()