Merge pull request #4003 from ntherning/ignore-disconnected-interfaces-in-HttpListene...
[mono.git] / mcs / tests / gtest-linq-24.cs
index add699bec111eab0f551d7ff57178deaebc4c027..8c3b5d4ac07355ebe6d698b33e892fe43b01c079 100644 (file)
@@ -1,29 +1,29 @@
-using System;\r
-using System.Linq;\r
-\r
-class A\r
-{\r
-       public int Value;\r
-}\r
-\r
-class C\r
-{\r
-       A[] Prop {\r
-               get {\r
-                       return new A [1] { new A () };\r
-               }\r
-       }\r
-       \r
-       void Test ()\r
-       {\r
-               int i = 9;\r
-               var c = new C ();\r
-               var r = Prop.Select (l => l.Value).ToArray ();\r
-       }\r
-       \r
-       public static int Main ()\r
-       {\r
-               new C().Test ();\r
-               return 0;\r
-       }\r
-}\r
+using System;
+using System.Linq;
+
+class A
+{
+       public int Value;
+}
+
+class C
+{
+       A[] Prop {
+               get {
+                       return new A [1] { new A () };
+               }
+       }
+       
+       void Test ()
+       {
+               int i = 9;
+               var c = new C ();
+               var r = Prop.Select (l => l.Value).ToArray ();
+       }
+       
+       public static int Main ()
+       {
+               new C().Test ();
+               return 0;
+       }
+}