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: c9f04f6953d9fc2c55291f6ddcbf428dfc4147ba (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0102-13.cs: The type `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;
}