[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-partial-12.cs
index d7e547a2aaf9d14a44d8087b9803a348ee480313..bed102e11dacf432f4b81bcd7c96f1fc8bf82285 100644 (file)
@@ -1,30 +1,30 @@
-// Compiler options: -langversion:default\r
-\r
-using System;\r
-\r
-namespace Test1\r
-{\r
-       public partial class Foo\r
-       {\r
-          internal static System.Collections.IEnumerable E ()\r
-          {\r
-                  yield return "a";\r
-          }\r
-       }\r
-}\r
-\r
-class X\r
-{\r
-       static int Main ()\r
-       {\r
-               foreach (string s in Test1.Foo.E())\r
-               {\r
-                       Console.WriteLine (s);\r
-                       if (s != "a")\r
-                               return 1;\r
-                       \r
-                       return 0;\r
-               }\r
-               return 2;\r
-       }\r
-}\r
+// Compiler options: -langversion:default
+
+using System;
+
+namespace Test1
+{
+       public partial class Foo
+       {
+          internal static System.Collections.IEnumerable E ()
+          {
+                  yield return "a";
+          }
+       }
+}
+
+class X
+{
+       public static int Main ()
+       {
+               foreach (string s in Test1.Foo.E())
+               {
+                       Console.WriteLine (s);
+                       if (s != "a")
+                               return 1;
+                       
+                       return 0;
+               }
+               return 2;
+       }
+}