Switch to compiler-tester
[mono.git] / mcs / tests / gtest-093.cs
1 using System;
2
3 public class Foo<T>
4 {
5         public readonly T Item;
6
7         public Foo (T item)
8         {
9                 this.Item = item;
10         }
11
12         static void maketreer (out Node rest)
13         {
14                 rest = new Node ();
15         }
16
17         class Node
18         { }
19
20         public void Hello<U> ()
21         {
22                 Foo<U>.Node node;
23                 Foo<U>.maketreer (out node);
24         }
25 }
26
27 class X
28 {
29         static void Main ()
30         { }
31 }