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

cs0414.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d63bb4a8e3be914c19e3bafe3b72a06934d2123e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0414: The private field `X.i' is assigned but its value is never used
// Line: 6
// Compiler options: -warnaserror -warn:3

class X {
	int i = 3;
	
	public void Y ()
	{
	}
}