GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-278-2-lib.cs
blob3614f024d9f2eb81ebf1b65e9bbb8c7f99647c16
1 // Compiler options: -t:library
3 // CECIL FIXME: Every method should actually throw new ApplicationException ("Should not be called");
4 // but because mcs dependency on System.Reflection it cannot be done
6 using System;
8 public class C
10 public class CC
12 public static string Print ()
14 return typeof (CC).FullName;
18 public static string Print ()
20 return typeof (C).FullName;
24 public class D
26 public static string Print ()
28 return typeof (D).FullName;
32 public struct G<T>
34 public static T Test (T t)
36 return t;