JavaCompilerCore/bin/mycompiler/test/blocks/TestInferenceAcrossBlocks.jav

12 lines
124 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
public class TestInferenceAcrossBlocks{
public m(a){
if(a==true){
return 3;
}
else {
x;
return x;
}
}
}