New test.
[mono.git] / mcs / errors / cs0663.cs
1 // cs0663.cs: `WrongInterface.Test(ref int)': Methods cannot differ only on their use of ref and out on a parameters
2 // Line: 6
3
4 public interface WrongInterface {
5         int Test(out int obj);
6         int Test(ref int obj);
7 }