2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0663.cs
blob6ceba8fd51ddb551aa9f4226f598b2d9e950cf24
1 // CS0663: Overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
2 // Line: 6
4 public interface WrongInterface {
5 int Test(out int obj);
6 int Test(ref int obj);