Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / errors / cs0445.cs
index e1b32500a625989086ee482e720e2ec5b3135d0e..efc703d7370c863ead91693670daf3749b053bc6 100644 (file)
@@ -1,13 +1,13 @@
-// cs0445.cs: Cannot modify the result of an unboxing conversion
+// CS0445: Cannot modify the result of an unboxing conversion
 // Line: 10
 
 struct S
 {
-    public int val;
+       public int val;
 
-    public void Do (object o) 
-    {
-        ((S)o).val = 4;
-    }
+       public void Do (object o) 
+       {
+               ((S)o).val = 4;
+       }
 }