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