forked from JavaTX/JavaCompilerCore
14 lines
232 B
Plaintext
14 lines
232 B
Plaintext
|
import java.lang.Boolean;
|
||
|
import java.lang.Integer;
|
||
|
|
||
|
class Bug123 {
|
||
|
Boolean works(){
|
||
|
if(true) return true;
|
||
|
else return false;
|
||
|
}
|
||
|
void fails(){
|
||
|
Boolean a = true;
|
||
|
if(true) a = false;
|
||
|
}
|
||
|
}
|