summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-14.cs
blob: fde8fb71ab4beea217389a001b2978b7c564a60a (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1525: Unexpected symbol `=', expecting `.' or `['
// Line: 8

class DerivedClass
{
	public DerivedClass ()
	{
		base = null;
	}
}