2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs0111.cs
1 // cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method `Foo'
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 }