summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-31.cs
blob: 07759cbe0f1a3e1055db84a83e313b7fe6212b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0165: Use of unassigned local variable `i'
// Line: 9

public class MainClass
{
	public void Foo ()
	{
		int i;
		i++;
	}
}