Store multiple exceptions in Completion correctly
[mono.git] / mcs / errors / cs0030-3.cs
index 4bb9fe059a3a4837ef948ff1334dd4bb3748b2ec..8835ec5acc5c8e729586bf8f4bf344d0f4b5c4af 100644 (file)
@@ -1,10 +1,10 @@
-// cs0030-3.cs : Cannot convert type `string' to `char'
-// Line : 8
+// CS0030: Cannot convert type `string' to `char'
+// Line: 8
 
 public class Blah {
 
        public static int Main ()
        {
-               char ch = (char)"a";            
+               char ch = (char)"a";
        }
 }