[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-787.cs
blob5c1d28f4afd931256d50024b35c4c8e010a39e47
1 using System;
3 public class A : Attribute
5 public virtual string Prop {
6 set {}
7 get { return null; }
10 public int Field ()
12 return 0;
16 public class B : A
18 public override string Prop {
19 set {}
20 get { return "b"; }
23 public new int Field;
26 [B (Prop = "a", Field = 3)]
27 public class Test
29 public static void Main ()