10 lines
106 B
Plaintext
Raw Normal View History

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