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: aea011886c2026eacdc873ea76a218961c69075e (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;
        }
}