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