Copied remotely
[mono.git] / mcs / errors / cs0663.cs
1 // cs0663.cs: 'Test' cannot define overloaded methods which differ only on ref and out
2 // Line: 6
3
4 public interface WrongInterface {
5         int Test(out int obj);
6         int Test(ref int obj);
7 }