2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-278-3-lib.cs
blob552a0e3bbbad4da908c970766fad475c6cb48fb5
1 // Compiler options: -r:gtest-278-2-lib.dll -t:library
3 using System;
5 public class B
7 public static int Test ()
9 if (C.Print () != "C")
10 return 1;
12 if (D.Print () != "D")
13 return 2;
15 if (G<int>.Test (5) != 5)
16 return 3;
18 if (C.CC.Print () != "C+CC")
19 return 4;
21 Console.WriteLine (typeof (C));
22 Console.WriteLine (typeof (D));
23 Console.WriteLine (typeof (G<string>));
24 Console.WriteLine (typeof (C.CC).Assembly.FullName);
26 return 0;