cleol
[mcs.git] / errors / cs0023-8.cs
blob98f45490ce5400da2f3e21cf6f4d29ac41e80c5a
1 // cs0023: The `+' operator cannot be applied to operand of type `X'
2 // Line : 6
4 class X {
5 static void Foo (object o)
9 static void Main () {
10 Foo (+(X)null);