[xbuild] Make Engine.DefaultToolsVersion 2.0 .
[mono.git] / mcs / errors / cs0111.cs
index 5af21e7818c0479e935021a3f533fb5e74b722d8..75accf6e109041e0ffdabd00dc751c12a7fd9a03 100644 (file)
@@ -1,13 +1,13 @@
-// cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method `Foo'
+// CS0111: A member `Blah.Foo(int, int)' is already defined. Rename this member or use different parameter types
 // Line : 10
 
 public class Blah {
 
-       public void Foo (int i, int j)
+       static public void Foo (int i, int j)
        {
        }
 
-       public void Foo (int i, int j)
+       static public void Foo (int i, int j)
        {
        }