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

cs0111-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cfa9234528e39c5a5467ca51d96001e88703749 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0111-3.cs: `Class.implicit operator Class(byte)' is already defined. Rename this member or use different parameter types
// Line: 9

public class Class {
        static public implicit operator Class(byte value) {
               return new Class();
        }
    
        public static void op_Implicit (byte value) {}
}