[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-decl-expr-06.cs
blob9734f2ec2a73d686e5cca13c8fbd4f4e4cf86724
1 using System;
3 public class C
5 Func<bool> f = () => Foo (out int arg);
7 static bool Foo (out int arg)
9 arg = 2;
10 return false;
13 public static void Main ()
15 new C ();