2005-08-01 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs1604.cs
old mode 100755 (executable)
new mode 100644 (file)
index 5c62149..9646df2
@@ -1,8 +1,10 @@
-// cs1604: Cannot assign to this
-// Line:
-class X {
-       void A ()
-       {
-               this = null;
-       }
-}
+// cs1604.cs: Cannot assign to 'this' because it is read-only
+// Line: 8
+
+class C
+{
+    public void Main ()
+    {
+       this = null;
+    }
+}
\ No newline at end of file