Merge pull request #3748 from akoeplinger/fix-rng-monotouch
[mono.git] / mcs / errors / cs0111.cs
1 // CS0111: A member `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
2 // Line : 10
3
4 public class Blah {
5
6         static public void Foo (int i, int j)
7         {
8         }
9
10         static public void Foo (int i, int j)
11         {
12         }
13
14         public static void Main ()
15         {
16                 int i = 1;
17                 int j = 2;
18
19                 Foo (i, j);
20         }
21 }