Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1686-3.cs
index 158afd80398cb5fa0750ca39fd89db4f588180a3..a992737501d2aa3c6bf711da9e92448ffd4f0d99 100644 (file)
@@ -1,21 +1,21 @@
-// CS1686: Local variable or parameter `i' cannot have their address taken and be used inside an anonymous method or lambda expression\r
-// Line: 18\r
-// Compiler options: -unsafe\r
-\r
-unsafe struct S\r
-{\r
-       public int i;\r
-}\r
-\r
-class C\r
-{\r
-       unsafe delegate int* D ();\r
-\r
-       static void Main ()\r
-       {\r
-               unsafe {\r
-                       S str = new S ();\r
-                       D d = delegate { return &str.i; };\r
-               }\r
-       }\r
-}\r
+// CS1686: Local variable or parameter `i' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression
+// Line: 18
+// Compiler options: -unsafe
+
+unsafe struct S
+{
+       public int i;
+}
+
+class C
+{
+       unsafe delegate int* D ();
+
+       static void Main ()
+       {
+               unsafe {
+                       S str = new S ();
+                       D d = delegate { return &str.i; };
+               }
+       }
+}