[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-anon-01.cs
blob68a2b497904808c98ac525a579124708f1bdd4e7
1 delegate void S ();
3 class X {
5 //
6 // DO NOT ADD ANYTHING ELSE TO THIS TEST
7 //
8 public static int Main ()
10 int a;
12 S b = delegate {
13 a = 2;
16 return 0;