[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / CS0534-3-lib.cs
blobd6783645d6e1db4060560ade49f9b2e39dbe3437
1 using System;
2 public abstract class MyTestAbstract
4 protected abstract string GetName();
6 public MyTestAbstract()
10 public void PrintName()
12 Console.WriteLine("Name=" + GetName());