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

cs0133.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55e016676fd1ad0e2b27512f951100e8f3f9ec7d (plain)
1
2
3
4
5
6
7
8
// cs0133.cs: The expression being assigned to `x' must be constant
// Line: 6
class X {
	X (int arg)
	{
		const int x = arg;
	}
}