X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftests%2Fgtest-232.cs;h=262056ed1644486e595803cceb08b0afa8b0b929;hb=890f40d7ad1d68ea5ff86ffdd3f6829dbd86b3ab;hp=8b01949507dd25452e12ba54b7184d9397089ab7;hpb=a097b5471761180c4aae2dab224ed9caeeae3e86;p=mono.git diff --git a/mcs/tests/gtest-232.cs b/mcs/tests/gtest-232.cs index 8b01949507d..262056ed164 100644 --- a/mcs/tests/gtest-232.cs +++ b/mcs/tests/gtest-232.cs @@ -1,14 +1,23 @@ +// Compiler options: -r:gtest-232-lib.dll using System; -using System.Collections.Generic; -public class H +class M { - public static void Main(String[] args) { } - - public static IEnumerable Merge (IEnumerator xEtor) - where T : IComparable + public static int Main () { - int order = xEtor.Current.CompareTo (xEtor.Current); - yield return xEtor.Current; + A.B.C v_1 = Factory.Create_1 (); + v_1.T = 5; + v_1.U = true; + v_1 = new A.B.C (); + + A.B2.C v_2 = Factory.Create_2 (); + v_2.T2 = -5; + v_2 = new A.B2.C (); + + A.B2 v_3 = Factory.Create_3 (); + v_3.T = 99; + v_3 = new A.B2 (); + + return 0; } -} +} \ No newline at end of file