package p;
class A {
	void f(int i) {
		if (i == 0) {
			int temp= 0;
		}
		if (i == 1) {
			int temp= 0 + 0;
			int x= temp;
		}
	}
}