mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-07 05:40:23 +07:00
16 lines
220 B
Plaintext
16 lines
220 B
Plaintext
class Temp {
|
|
class Set {
|
|
native Object size();
|
|
}
|
|
|
|
public Object foo(Set bar) {
|
|
if (bar.size() < 2) {
|
|
// Inline this
|
|
bar.size(); // or online this
|
|
return null;
|
|
}
|
|
|
|
return bar;
|
|
}
|
|
|
|
} |