[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-623.cs
blob9021a6e2c7562a0c52fe15ee260bf4dc1e93b184
1 //
2 // fixed
3 //
4 interface I {
5 void a ();
8 abstract class X : I {
9 public abstract void a ();
12 class Y : X {
13 override public void a () {
14 System.Console.WriteLine ("Hello!");
15 return;
18 public static void Main () {
19 Y y = new Y ();
21 ((I) y ).a ();