2009-04-07 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / errors / cs0023-10.cs
1 // cs0023: The `+' operator cannot be applied to operand of type `X'\r
2 // Line : 6\r
3 \r
4 class X {\r
5     static X x;\r
6     static object o = +x;\r
7 }\r