2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0534-4.cs
blobad85ed0988c21af8d2f4ce716b08c0aba78d1303
1 // cs0534-4.cs: `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");