Merge pull request #4003 from ntherning/ignore-disconnected-interfaces-in-HttpListene...
[mono.git] / mcs / tests / gtest-525.cs
index a7ea3b6c7f307f6e4f65b919ef3934c6f7a6a7e5..b0c420f4c1a3e9be5e9e5e5ef25113c61676c9ed 100644 (file)
@@ -1,29 +1,29 @@
-using System;\r
-\r
-class A\r
-{\r
-       static void MA<T> (string s)\r
-       {\r
-       }\r
-\r
-       static void F ()\r
-       {\r
-       }\r
-\r
-       class C\r
-       {\r
-               Func<int> MA;\r
-               int F;\r
-               \r
-               void Foo ()\r
-               {\r
-                       F ();\r
-                       MA<int> ("");\r
-               }\r
-               \r
-               public static void Main ()\r
-               {\r
-                       new C ().Foo ();\r
-               }\r
-       }\r
+using System;
+
+class A
+{
+       static void MA<T> (string s)
+       {
+       }
+
+       static void F ()
+       {
+       }
+
+       public class C
+       {
+               Func<int> MA;
+               int F;
+               
+               void Foo ()
+               {
+                       F ();
+                       MA<int> ("");
+               }
+               
+               public static void Main ()
+               {
+                       new C ().Foo ();
+               }
+       }
 }
\ No newline at end of file