Merge pull request #5560 from kumpera/wasm-work-p3
[mono.git] / mcs / tests / test-670.cs
index 7c918b5f86e925fc489a9ae28d8c3062366b625c..cbed4ac6ddbd4c9297784446eb6ca62c177ed32a 100644 (file)
@@ -1,13 +1,13 @@
-// Compiler options: -unsafe\r
-\r
-using System;\r
-\r
-unsafe class C\r
-{\r
-       public static void Main ()\r
-       {\r
-               int x = 5;\r
-               int* a = &(*(x + (int*)null));\r
-               int* b = &(*(x + (int*)1));\r
-       }\r
-}\r
+// Compiler options: -unsafe
+
+using System;
+
+unsafe class C
+{
+       public static void Main ()
+       {
+               int x = 5;
+               int* a = &(*(x + (int*)null));
+               int* b = &(*(x + (int*)1));
+       }
+}