[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-lambda-26.cs
blob30d56ba8f580d4058e44bed10fbf08689a72ad80
1 using System;
3 class C
5 public static void Main ()
7 Execute (() => {
8 int a, b;
9 });
12 public static void Execute (Action action) { }