2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs0663.cs
blob0298a0e1e7e72553939560cb8ef866eddece5c91
1 // cs0663.cs: `WrongInterface.Test(ref int)': Methods cannot differ only on their use of ref and out on a parameters
2 // Line: 6
4 public interface WrongInterface {
5 int Test(out int obj);
6 int Test(ref int obj);