Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0663.cs
1 // CS0663: 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 }