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