summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165.cs
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;
	}
}