Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1604.cs
index 9646df2ffdee5149ee3df60531bdf36bcce3a4e2..aade078c9b4afb443ae1d5683c30b5303496a804 100644 (file)
@@ -1,10 +1,10 @@
-// cs1604.cs: Cannot assign to 'this' because it is read-only
+// CS1604: Cannot assign to `this' because it is read-only
 // Line: 8
 
 class C
 {
     public void Main ()
     {
-       this = null;
+               this = null;
     }
-}
\ No newline at end of file
+}