summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0715.cs
blob: 8fd1a92fb6281d04f2a991422e4ec8cc0ede021f (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0715: `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;
        }
}