package p;
class A{
	int r(){return 4;}
	boolean b(){return true;}
	void f(int fd){
		boolean temp= b();
		do {
		} while(temp);
	}
}
