2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-415-lib.cs
blobbec8b987ff2170726e34be6402952f79e980bc72
1 // Compiler options: -t:library
3 using System;
4 public abstract class MyTestAbstract
6 protected abstract string GetName();
8 public MyTestAbstract()
12 public void PrintName()
14 Console.WriteLine("Name=" + GetName());