[xbuild] Remove ErrorTest.TestExecute1()
[mono.git] / mcs / errors / cs0100-3.cs
1 // CS0100: The parameter name `obj' is a duplicate
2 // Line: 6
3
4 public abstract class TestClass 
5 {
6         public abstract void TestMethod (object obj, object obj);
7 }