JavaCompilerCore/test/bytecode/javFiles/IfTest.jav

10 lines
106 B
Plaintext
Raw Normal View History

2017-12-20 12:35:55 +00:00
public class IfTest{
Integer m1(Boolean b) {
Integer i;
if(b) {
return i;
}
return i;
}
}