[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-iter-18.cs
blob7e40f4fbdd034700473924ba10185086f9355a72
1 using System.Collections.Generic;
3 public class c
5 public static IEnumerable<char> func ()
7 yield return '0';
8 yield break;
9 foreach (char c in "1") {
10 yield return c;
14 public static void Main ()
16 foreach (char a in func ()) {