"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0534-3.cs
blobe1c06dfe4014b70ce89622a9aeaf45c6f37ccf93
1 // CS0534: `MyTestExtended' does not implement inherited abstract member `MyTestAbstract.GetName()'
2 // Line: 6
3 // Compiler options: -r:CS0534-3-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");