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: 1f1d28e66528a1a679471eba55d1443bcea0558c (plain)
1
2
3
4
5
6
7
8
9
10
// cs0111.cs: Class 'Class' already defines a member called 'op_Implicit' with the same parameter types
// Line: 9

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