[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-debug-22.cs
blobfb45dccfdc2be3623e52c804d7405a4145cb2037
1 using System;
2 using System.Collections.Generic;
4 class A
6 public virtual int Foo ()
8 return 4;
12 class C : A
14 public IEnumerable<int> GetIter ()
16 yield return base.Foo ();
19 public override int Foo ()
21 throw new ApplicationException ();
24 public static void Main ()