summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0663.cs
blob: 6ceba8fd51ddb551aa9f4226f598b2d9e950cf24 (plain)
1
2
3
4
5
6
7
// CS0663: Overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
// Line: 6

public interface WrongInterface {
        int Test(out int obj);
        int Test(ref int obj);
}