Files
openide/java/java-tests/testData/refactoring/extractMethod/ExitPoints6.java
Dmitry Jemerov b7e66aee44 test++
2009-09-10 20:21:16 +04:00

11 lines
237 B
Java

// multiple output values: one for modelling control flow + output value
class K {
int f(Object o) {
<selection>if (o == null) return 0;
o = new Object();</selection>
Object oo = o;
return 1;
}
}