Merge pull request #4274 from kumpera/cctor-abort
[mono.git] / mono / dis / tests / test3.cs
1 /* Bug #76671
2    Note: gmcs currently emits duplicate TypeSpecs, so this
3          case doesn't get exposed, so use csc compiled
4          assemblies till gmcs is fixed.
5 */
6
7 using System;
8
9 class X<T1> {
10         public static void Xfoo () {
11                 Console.WriteLine (typeof (T1).ToString ());
12         }
13 }
14
15 class Y<T2> {
16         public static void Yfoo () {
17                 Console.WriteLine (typeof (T2).ToString ());
18         }
19 }
20
21 class Test {
22         static void Main ()
23         {
24         }
25 }