[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / test-anon-37.cs
index ab1e9abbf59e2533f34cb4e1cf01897f1f6501a8..e5d2248ae32f4cbe7bc77009e228d94d7a368adb 100644 (file)
@@ -1,14 +1,14 @@
-using System;\r
-\r
-public class DelegateInit {\r
-    public delegate void FooDelegate();\r
-\r
-    public static readonly FooDelegate _print =\r
-        delegate() {\r
-            Console.WriteLine("delegate!");\r
-        };\r
-\r
-    public static void Main(string[] args) {\r
-        _print();\r
-    }\r
+using System;
+
+public class DelegateInit {
+    public delegate void FooDelegate();
+
+    public static readonly FooDelegate _print =
+        delegate() {
+            Console.WriteLine("delegate!");
+        };
+
+    public static void Main(string[] args) {
+        _print();
+    }
 }
\ No newline at end of file