2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / mono / dis / tests / test1.cs
blobb28fe8b1eca55a783113a44ffb56c48691041c23
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 */
7 class X<T1> {
8 public static void Xfoo () {
9 X<T1>.Xfoo();
13 class Y<T2> {
14 public static void Yfoo () {
15 X<T2>.Xfoo();
19 class Test {
20 static void Main ()