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: 62d41a610f2bc65bad1590b005c469166d40acc2 (plain)
1
2
3
4
5
6
7
8
9
// CS0169: The private field `X.x' is never used
// Line: 4
// Compiler options: -warnaserror -warn:4

class X {
	int x;

	static void Main () {}
}