[mcs] Add new test
[mono.git] / mcs / errors / cs0211.cs
index 89aa68f35100028046738f3901dec27a36612345..811a909c937b44c779f3022a708ef65fd7e818b8 100644 (file)
@@ -1,11 +1,10 @@
-// cs0211.cs: Cannot take the address of the given expression\r
-// Line: 7\r
-// Compiler options: -unsafe\r
-\r
-class UnsafeClass {\r
-        unsafe UnsafeClass () {\r
-                fixed (int* a = &(2)) {}\r
-        }\r
-}\r
-\r
-\r
+// CS0211: Cannot take the address of the given expression
+// Line: 7
+// Compiler options: -unsafe
+
+class UnsafeClass {
+        unsafe UnsafeClass () {
+                fixed (int* a = &(2)) {}
+        }
+}
+