blob: 301d1ed25649a5cc4e0737add8c1aabf92697709 [file] [log] [blame]
package p;
class A{
void m(int i){
int temp= f();
if (temp == 0){
int t= temp;
}
}
int f(){
return 5;
}
}