forked from JavaTX/JavaCompilerCore
12 lines
124 B
Java
Executable File
12 lines
124 B
Java
Executable File
public class TestInferenceAcrossBlocks{
|
|
|
|
public m(a){
|
|
if(a==true){
|
|
return 3;
|
|
}
|
|
else {
|
|
x;
|
|
return x;
|
|
}
|
|
}
|
|
} |