summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0027-4.cs
blob: cae5dc9212849e9f4bf194204eb28e00cd858fae (plain)
1
2
3
4
5
6
7
// CS0027: Keyword `this' is not available in the current context
// Line: 6

class Program
{
	const object y = this;
}