Merge pull request #4040 from ntherning/disable-symbolicate-tests-on-windows
[mono.git] / mcs / errors / cs0023-7.cs
index 3135281606e9629ba39e1ee76b7b3eba3ba418d7..3fa1ef6fe4b26a8d6f450a5bd399e83efd02c4dc 100644 (file)
@@ -1,18 +1,18 @@
-// CS0023: The `.' operator cannot be applied to operand of type `int*'\r
-// Line: 8\r
-// Compiler options: -unsafe\r
-\r
-class C\r
-{\r
-       static unsafe int* Foo ()\r
-       {\r
-               return (int*)0;\r
-       }\r
-       \r
-       public static void Main ()\r
-       {\r
-               unsafe {\r
-                       string s = Foo().ToString ();\r
-               }\r
-       }\r
+// CS0023: The `.' operator cannot be applied to operand of type `int*'
+// Line: 8
+// Compiler options: -unsafe
+
+class C
+{
+       static unsafe int* Foo ()
+       {
+               return (int*)0;
+       }
+       
+       public static void Main ()
+       {
+               unsafe {
+                       string s = Foo().ToString ();
+               }
+       }
 }
\ No newline at end of file