[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0534-4.cs
blob931a1c47b395540bea4dfc57a0d66910ed77df5c
1 // CS0534: `MyTestExtended' does not implement inherited abstract member `MyTestAbstract.GetName()'
2 // Line: 6
3 // Compiler options: -r:CS0534-4-lib.dll
5 using System;
6 public class MyTestExtended : MyTestAbstract
8 public MyTestExtended() : base()
12 public static void Main(string[] args)
14 Console.WriteLine("Calling PrintName");
15 MyTestExtended test = new MyTestExtended();
16 test.PrintName();
17 Console.WriteLine("Out of PrintName");