summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0023-10.cs
blob: 9d31bb399010c429d120544642f1ab4bfc510f7f (plain)
1
2
3
4
5
6
7
// CS0023: The `+' operator cannot be applied to operand of type `X'
// Line : 6

class X {
    static X x;
    static object o = +x;
}