[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs0031.cs
index 1200f3f68baf5f6f56fa11604ef24f802ba3bf34..f62ab0ab7451771473fc98a794793b16f65fbde0 100644 (file)
@@ -1,12 +1,12 @@
-// cs0031.cs: Constant value `1022' cannot be converted to a `byte'\r
-// Line: 9\r
-\r
-public class Test\r
-{\r
-       public static void Main()\r
-       {\r
-               unchecked {\r
-                       byte b = 1024 - 2;\r
-               }\r
-       }\r
+// CS0031: Constant value `1022' cannot be converted to a `byte'
+// Line: 9
+
+public class Test
+{
+       public static void Main()
+       {
+               unchecked {
+                       byte b = 1024 - 2;
+               }
+       }
 }
\ No newline at end of file