[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-163.cs
blobe26d41b015418f18976c61ccaa96f2a11bf3213b
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
5 public class Foo<T>
7 public IEnumerator<T> getEnumerator (int arg)
9 if (arg == 1) {
10 int foo = arg;
11 Console.WriteLine (foo);
14 if (arg == 2) {
15 int foo = arg;
16 Console.WriteLine (foo);
19 yield break;
23 class X
25 public static void Main ()
26 { }