[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-etree-28.cs
blob21b22c7ce0aebef3cb7b3fe286409d029b7327e4
1 // Compiler options: -warnaserror
3 using System;
4 using System.Linq.Expressions;
6 class Repro
8 int i = 2;
10 void UseField ()
12 TakeExpression (() => Console.Write (i));
15 void TakeExpression (Expression<Action> expr)
19 public static void Main ()