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: bcd47c814917d6948e110df4a7fae62ed7c6241b (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0169.cs: warning, private field `prv' is never used
// Line: 4
class X {
	int x;

	void blah ()
	{
	}

	static void Main () {}
}