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: a8d0e08abe7385caff77e7bbbbfac58be68874ff (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;
	}
}