2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-8.cs
blob7571848ef7a8fc157c17a51755db8bba0bc5faa8
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);