package p;

class A {
	static final int a = 10 + 20;
	void foo() {
		int b = 1 - a;
	}
}