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

cs0165.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3f89b240b96e0d8b5f7ce3954997be965f97951 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0165.cs: Use of unassigned local variable
// Line: 9

class T {
	static void Main ()
	{
		int errors;

		errors += 1;
	}
}