[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0100.cs
blob84787324742522a2980748d070720211a7f00ba3
1 // CS0100: The parameter name `a' is a duplicate
2 // Line: 6
3 //
4 // Author:
5 // Alejandro Snchez Acosta <raciel@es.gnu.org>
6 //
7 // (C) Alejandro Snchez Acosta
8 //
10 public class X
12 public void Add (int a, int a)
14 int c;
15 c= a + a;
16 Console.WriteLine (c);
19 static void Main ()
21 this.Add (3, 5);