[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs0445-2.cs
index 48a6b018d3f43ecf3e9ec263c87b0d683f844b2b..fa699a17789e8694803dcb8f128b11631caa6d3e 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 { set {} }
+       public int val { set {} }
 
-    public void Do (object o) 
-    {
-        ((S)o).val = 4;
-    }
+       public void Do (object o) 
+       {
+               ((S)o).val = 4;
+       }
 }