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

cs0715.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d04ec5d6712cfdccfd844a07bacb2b21268417ab (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0715.cs: 'StaticClass.implicit operator StaticClass(int)': static classes cannot contain user-defined operators
// Line: 5

static class StaticClass {
        public static implicit operator StaticClass (int arg)
        {
            return null;
        }
}