GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-093.cs
blobb9f4b614e7368af67624c3ee7eff78e89fd3d039
1 using System;
3 public class Foo<T>
5 public readonly T Item;
7 public Foo (T item)
9 this.Item = item;
12 static void maketreer (out Node rest)
14 rest = new Node ();
17 class Node
18 { }
20 public void Hello<U> ()
22 Foo<U>.Node node;
23 Foo<U>.maketreer (out node);
27 class X
29 static void Main ()
30 { }