
public class ZATest {
	int foo(int x, float f) {
		int z = 0;
		int w = 5;
		int v = w;
		while (x > 0) { 
			w = x + 10;
			int y = z;
			v = y;
			x--;
		}
		return z;
	}
}
