mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
11 lines
237 B
Java
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;
|
|
}
|
|
}
|