(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0100.cs
blob959bf9382a9aaf8a16cd4708e837ea7579e1f749
1 // cs0100.cs: same parameters name in a method declaration.
2 // Line: 6
3 //
4 // Author:
5 // Alejandro Sánchez Acosta <raciel@es.gnu.org>
6 //
7 // (C) Alejandro Sánchez 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);