[xbuild] Fix bug #676671. Raise AnyEvent .
[mono.git] / mcs / errors / cs0023-10.cs
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..061263ffb6c8d1b02db3a90b93f46d6fa53e1a9b 100644 (file)
@@ -0,0 +1,7 @@
+// cs0023: The `+' operator cannot be applied to operand of type `X'
+// Line : 6
+
+class X {
+    static X x;
+    static object o = +x;
+}