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: d03d86362606979d33db01128961f112cfab2d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0165: Use of unassigned local variable `errors'
// Line: 9

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

		errors += 1;
	}
}