[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-945.cs
blob398787db29faee4ef50c33f4797e6360be0f65b8
1 public abstract class A
3 public abstract void Bind (string [] args);
6 public class B : A
8 public override void Bind (params string [] args)
12 public static int Main ()
14 var m = typeof (B).GetMethod ("Bind");
15 var p = m.GetParameters ();
16 var ca = p[0].GetCustomAttributes (false);
17 if (ca.Length != 0)
18 return 1;
20 return 0;