codeowners update
[mono.git] / mcs / errors / cs0019-7.cs
index a18964f4d9222565b29f91ef8c2f1f807d9c8df7..76be4121a3a17b830b69a1c644d49dc26626068c 100644 (file)
@@ -1,4 +1,4 @@
-// cs0019.cs: Can not apply operator + between string and float *
+// CS0019: Operator `+' cannot be applied to operands of type `string' and `float*'
 // Line: 12
 // Compiler options: -unsafe
 using System;
@@ -9,7 +9,7 @@ public class Driver {
     floats[0] = 1.0f;
     unsafe {
       fixed (float *fp = &floats[0]) {
-       Console.WriteLine ("foo" + fp);
+      Console.WriteLine ("foo" + fp);
       }
     }
   }