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: 1c58a186d8d0e5b91d8d9b0abf49b47dbfc400f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0169.cs: warning, private field `prv' is never used
// Line: 4
// Compiler options: -warnaserror -warn:4

class X {
	int x;

	void blah ()
	{
	}

	static void Main () {}
}