JavaCompilerCore/resources/bytecode/javFiles/Bug123.jav

14 lines
253 B
Plaintext
Raw Normal View History

import java.lang.Boolean;
import java.lang.Integer;
2024-03-14 12:50:56 +00:00
public class Bug123 {
public Boolean works(){
if(true) return true;
else return false;
}
2024-03-14 12:50:56 +00:00
public void fails(){
Boolean a = true;
if(true) a = false;
}
}