Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

22 lines
317 B
C#

// CS0111: A member `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
// Line : 10
public class Blah {
static public void Foo (int i, int j)
{
}
static public void Foo (int i, int j)
{
}
public static void Main ()
{
int i = 1;
int j = 2;
Foo (i, j);
}
}