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

cs0102-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b073fb946e670ddf84121d6a8af7bdcadf58bba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0102.cs: The class 'SampleClass' already contains a definition for 'op_Implicit'
// Line: 10

public class SampleClass {
    
        static public implicit operator SampleClass (byte value) {
               return new SampleClass();
        }
        
        public bool op_Implicit;
}