Merge pull request #1931 from kasthack/system.web-fixes
[mono.git] / mcs / tests / test-anon-77.cs
old mode 100755 (executable)
new mode 100644 (file)
index d953474..aa590d1
@@ -1,21 +1,21 @@
-using System;\r
-\r
-delegate void D ();\r
-\r
-public class y\r
-{\r
-       bool [] xs;\r
-       public bool this [int n]\r
-       {\r
-               get {\r
-                       D d = delegate () { n = 1; };\r
-                       return true;\r
-               }\r
-\r
-               set { xs [n] = value; }\r
-       }\r
-       \r
-       public static void Main ()\r
-       {\r
-       }\r
-}\r
+using System;
+
+delegate void D ();
+
+public class y
+{
+       bool [] xs;
+       public bool this [int n]
+       {
+               get {
+                       D d = delegate () { n = 1; };
+                       return true;
+               }
+
+               set { xs [n] = value; }
+       }
+       
+       public static void Main ()
+       {
+       }
+}