2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-415.cs
blobf6f9361d65a69d4095f8515c2487475d9b504061
1 // Compiler options: -r:test-415-lib.dll
3 using System;
4 public class MyTestExtended : MyTestAbstract
6 public MyTestExtended() : base()
10 protected override string GetName() { return "foo"; }
11 public static void Main(string[] args)
13 Console.WriteLine("Calling PrintName");
14 MyTestExtended test = new MyTestExtended();
15 test.PrintName();
16 Console.WriteLine("Out of PrintName");