[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-755.cs
blob038e92fbbf5a8b4e5172de8f63fc003277a05e8a
1 class Item
3 public static int Foo = 42;
5 public class Builder
7 public int Foo
9 get { return Item.Foo; }
12 public object this[int field]
14 get { return null; }
17 public object this[int field, int i]
19 get { return null; }
24 class Program
26 public static void Main ()