Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-232.cs
index 8b01949507dd25452e12ba54b7184d9397089ab7..262056ed1644486e595803cceb08b0afa8b0b929 100644 (file)
@@ -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<T> Merge<T> (IEnumerator<T> xEtor)
-               where T : IComparable<T>
+       public static int Main ()
        {
-               int order = xEtor.Current.CompareTo (xEtor.Current);
-               yield return xEtor.Current;
+               A<int>.B<bool>.C<string> v_1 = Factory.Create_1 ();             
+               v_1.T = 5;
+               v_1.U = true;
+               v_1 = new A<int>.B<bool>.C<string> ();
+               
+               A<int>.B2.C<string> v_2 = Factory.Create_2 ();
+               v_2.T2 = -5;
+               v_2 = new A<int>.B2.C<string> ();
+
+               A<int>.B2 v_3 = Factory.Create_3 ();
+               v_3.T = 99;
+               v_3 = new A<int>.B2 ();
+               
+               return 0;
        }
-}
+}
\ No newline at end of file