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

cs0169.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7f2b00789fd262f1cef99f7f478aba9d8252d69 (plain)
1
2
3
4
5
6
7
8
9
// cs0169.cs: The private field `X.x' is never used
// Line: 4
// Compiler options: -warnaserror -warn:4

class X {
	int x;

	static void Main () {}
}