2005-06-03 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / mtest-6-exe.cs
1 // Compiler options: -r:mtest-6-dll.dll
2
3 using System;
4 public class MyTestExtended : MyTestAbstract
5 {
6         public MyTestExtended() : base()
7         {
8         }
9
10         protected override string GetName() { return "foo"; }
11         public static void Main(string[] args)
12         {
13                 Console.WriteLine("Calling PrintName");
14                 MyTestExtended test = new MyTestExtended();
15                 test.PrintName();
16                 Console.WriteLine("Out of PrintName");
17         }
18         
19 }