* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs0111.cs
blob82fce7546e1e65622cfabf03abfc079d4981af95
1 // cs0111.cs: `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
2 // Line : 10
4 public class Blah {
6 static public void Foo (int i, int j)
10 static public void Foo (int i, int j)
14 public static void Main ()
16 int i = 1;
17 int j = 2;
19 Foo (i, j);