[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-093.cs
bloba8758251f88d2542796d50824fabd2877fbc563c
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 public static void Main ()
30 { }