Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0133-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 094fec1d6ad6c5c951cf380c6f444aef96f1c449 (plain)
1
2
3
4
5
6
7
// cs0133-4.cs: The expression being assigned to `Program.y' must be constant
// Line: 12

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