[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1677.cs
index 962d9c3210ca9ddd85bd688155e4b055b7cd1394..d371ef532b651008c50af62e477739820e5611af 100644 (file)
@@ -1,11 +1,11 @@
-// cs1677.cs: Parameter `1' should not be declared with the `ref' keyword\r
-// Line: 9\r
-\r
-delegate void D (int x);\r
-\r
-class X {\r
-       static void Main ()\r
-       {\r
-               D d2 = delegate (ref int x) {};\r
-       }\r
-}\r
+// CS1677: Parameter `1' should not be declared with the `ref' keyword
+// Line: 9
+
+delegate void D (int x);
+
+class X {
+       static void Main ()
+       {
+               D d2 = delegate (ref int x) {};
+       }
+}