[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0221-5.cs
index d30b25fa82e3c17c437214b52ed9bb485f2e6911..c3167e60a3bd21298cbfd4db889cecb4a25b1b5b 100644 (file)
@@ -1,12 +1,12 @@
-// cs0221.cs: Constant value `-1' cannot be converted to a `byte' (use `unchecked' syntax to override)
+// CS0221: Constant value `-1' cannot be converted to a `byte' (use `unchecked' syntax to override)
 // Line: 11
-\r
-using System;\r
 
-public class My3Attribute : Attribute\r
-{\r
-       public My3Attribute (byte b) {}\r
-}\r
-\r
-[My3((byte)-1)]\r
+using System;
+
+public class My3Attribute : Attribute
+{
+       public My3Attribute (byte b) {}
+}
+
+[My3((byte)-1)]
 public class Test { }
\ No newline at end of file