remove debug writelines
[mcs.git] / errors / cs0100.cs
blob925f07537b3f8c84bafb8e7eb960021af6e2114c
1 // cs0100.cs: 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);