X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftests%2Ftest-partial-12.cs;h=bed102e11dacf432f4b81bcd7c96f1fc8bf82285;hb=6f677fd8c383e2517740a23f196625b3056cb714;hp=d7e547a2aaf9d14a44d8087b9803a348ee480313;hpb=53e266903ec6b2d822cf5b0c566f6374df5307a4;p=mono.git diff --git a/mcs/tests/test-partial-12.cs b/mcs/tests/test-partial-12.cs index d7e547a2aaf..bed102e11da 100644 --- a/mcs/tests/test-partial-12.cs +++ b/mcs/tests/test-partial-12.cs @@ -1,30 +1,30 @@ -// Compiler options: -langversion:default - -using System; - -namespace Test1 -{ - public partial class Foo - { - internal static System.Collections.IEnumerable E () - { - yield return "a"; - } - } -} - -class X -{ - static int Main () - { - foreach (string s in Test1.Foo.E()) - { - Console.WriteLine (s); - if (s != "a") - return 1; - - return 0; - } - return 2; - } -} +// 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; + } +}