* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0534-3.cs
1 // cs0534-3.cs: `MyTestExtended' does not implement inherited abstract member `MyTestAbstract.GetName()'
2 // Line: 6
3 // Compiler options: -r:CS0534-3-lib.dll
4
5 using System;
6 public class MyTestExtended : MyTestAbstract
7 {
8         public MyTestExtended() : base()
9         {
10         }
11
12         public static void Main(string[] args)
13         {
14                 Console.WriteLine("Calling PrintName");
15                 MyTestExtended test = new MyTestExtended();
16                 test.PrintName();
17                 Console.WriteLine("Out of PrintName");
18         }
19         
20 }