2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-278-4-lib.cs
blobcf9cd3b87e19fcfdd8e25be2022321189b9f1059
1 // Compiler options: -t:library
3 using System;
5 public class C
7 public class CC
9 public static string Print ()
11 return typeof (CC).FullName;
15 public static string Print ()
17 return typeof (C).FullName;
21 public class D
23 public static string Print ()
25 return typeof (D).FullName;
29 public struct G<T>
31 public static T Test (T t)
33 return t;