summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0120-11.cs
blob: db295e62f637b6e042e1e9f5f5b6a170c236fffa (plain)
1
2
3
4
5
6
7
// CS0120: An object reference is required to access non-static member `Program.x'
// Line: 6

class Program {
	int x;
	const int y = x;
}