Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-278-3-lib.cs
1 // Compiler options: -r:gtest-278-2-lib.dll -t:library
2
3 using System;
4
5 public class B
6 {
7         public static int Test ()
8         {
9                 if (C.Print () != "C")
10                         return 1;
11
12                 if (D.Print () != "D")
13                         return 2;
14                         
15                 if (G<int>.Test (5) != 5)
16                         return 3;
17                         
18                 if (C.CC.Print () != "C+CC")
19                         return 4;
20                         
21                 Console.WriteLine (typeof (C));
22                 Console.WriteLine (typeof (D));
23                 Console.WriteLine (typeof (G<string>));
24                 Console.WriteLine (typeof (C.CC).Assembly.FullName);
25
26                 return 0;
27         }
28 }