X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Fgtest-232.cs;h=262056ed1644486e595803cceb08b0afa8b0b929;hb=cb21cf251997fb6caecf6406a8b91ebed7af81c9;hp=8b01949507dd25452e12ba54b7184d9397089ab7;hpb=75df74a96c33af7a99e16e4281272f1b67334a48;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