Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0663.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}