Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-399.cs
index ee5db71bb2d6e7c27b3056b9d61308e9b20629e0..e6e0895862683235175866c22b31df1776680890 100644 (file)
@@ -1,28 +1,28 @@
-using System;\r
-using System.Collections.Generic;\r
-\r
-namespace TestIssue\r
-{\r
-       class Base\r
-       {\r
-       }\r
-\r
-       class Derived : Base\r
-       {\r
-       }\r
-\r
-       class Program\r
-       {\r
-               static int Main ()\r
-               {\r
-                       try {\r
-                               IEnumerable<Derived> e1 = (IEnumerable<Derived>) (new Base [] { });\r
-                               return 1;\r
-                       }\r
-                       catch (InvalidCastException)\r
-                       {\r
-                               return 0;\r
-                       }\r
-               }\r
-       }\r
-}\r
+using System;
+using System.Collections.Generic;
+
+namespace TestIssue
+{
+       class Base
+       {
+       }
+
+       class Derived : Base
+       {
+       }
+
+       class Program
+       {
+               public static int Main ()
+               {
+                       try {
+                               IEnumerable<Derived> e1 = (IEnumerable<Derived>) (new Base [] { });
+                               return 1;
+                       }
+                       catch (InvalidCastException)
+                       {
+                               return 0;
+                       }
+               }
+       }
+}