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

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