[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-iter-26.cs
blob6da69d394e3ec8a56f57396d036a32e5d53c7839
1 using System;
2 using System.Collections;
4 class C
6 public static IEnumerable Test (bool b, int value)
8 if (b) {
9 Console.WriteLine (value);
12 yield return 1;
15 public static void Main ()
17 Test (true, 5);