a133b36ccb815cc1efa33c9c8a1ec6a2cd9825b7
[mono.git] / mcs / errors / cs0663.cs
1 // CS0663: An overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
2 // Line: 6
3
4 public interface WrongInterface {
5         int Test(out int obj);
6         int Test(ref int obj);
7 }