[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-248.cs
blobf3f093d4dfce552add1d28b64740344744d2613c
1 using System;
3 class T {
4 static Foo GetFoo () { return new Foo (); }
6 public static void Main ()
8 string s = GetFoo ().i.ToString ();
9 Console.WriteLine (s);
13 struct Foo { public int i; }