Merge pull request #4040 from ntherning/disable-symbolicate-tests-on-windows
[mono.git] / mcs / errors / cs0469.cs
index 233167bcba28e7b72087e55aba899b839240b23a..eac14b77a728505ad3e93eb32457ed48e2cced31 100644 (file)
@@ -1,19 +1,19 @@
-// cs0469.cs: The `goto case' value is not implicitly convertible to type `char'
+// CS0469: The `goto case' value is not implicitly convertible to type `char'
 // Line: 16
-// Compiler options: -warnaserror -warn:2\r
-\r
-class Test\r
-{\r
-       static void Main()\r
-       {\r
-               char c = 'c';\r
-               switch (c)\r
-               {\r
-                       case 'A':\r
-                               break;\r
-\r
-                       case 'a': \r
-                               goto case 65;\r
-               }\r
-       }\r
+// Compiler options: -warnaserror -warn:2
+
+class Test
+{
+       static void Main()
+       {
+               char c = 'c';
+               switch (c)
+               {
+                       case 'A':
+                               break;
+
+                       case 'a': 
+                               goto case 65;
+               }
+       }
 }
\ No newline at end of file