Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / gtest-232.cs
1 // Compiler options: -r:gtest-232-lib.dll
2 using System;
3
4 class M
5 {
6         public static int Main ()
7         {
8                 A<int>.B<bool>.C<string> v_1 = Factory.Create_1 ();             
9                 v_1.T = 5;
10                 v_1.U = true;
11                 v_1 = new A<int>.B<bool>.C<string> ();
12                 
13                 A<int>.B2.C<string> v_2 = Factory.Create_2 ();
14                 v_2.T2 = -5;
15                 v_2 = new A<int>.B2.C<string> ();
16
17                 A<int>.B2 v_3 = Factory.Create_3 ();
18                 v_3.T = 99;
19                 v_3 = new A<int>.B2 ();
20                 
21                 return 0;
22         }
23 }