summaryrefslogtreecommitdiff
path: root/mcs/errors/CS0534-3-lib.cs
blob: d6783645d6e1db4060560ade49f9b2e39dbe3437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
public abstract class MyTestAbstract
{
	protected abstract string GetName();
	
	public MyTestAbstract()
	{
	}

	public void PrintName()
	{
		Console.WriteLine("Name=" + GetName());
	}
}