Merge pull request #3569 from lambdageek/monodis-no-segfault
[mono.git] / mcs / errors / cs0247.cs
index 0a0aef92d283a0ebd386a713405c6eeb58b2a3d7..1acaf6151dd0088f2919bc0b9944345ec7aabf91 100644 (file)
@@ -1,11 +1,11 @@
-// cs0247.cs: Cannot use a negative size with stackalloc\r
-// Line: 7\r
-// Compiler options: -unsafe\r
-\r
-public class MainClass {\r
-        static unsafe void Main () {\r
-                int* ptr = stackalloc int[-1];\r
-        }\r
-}\r
-\r
-\r
+// CS0247: Cannot use a negative size with stackalloc
+// Line: 7
+// Compiler options: -unsafe
+
+public class MainClass {
+        static unsafe void Main () {
+                int* ptr = stackalloc int[-1];
+        }
+}
+
+