// CS0165: Use of unassigned local variable `i'
// Line: 9

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