mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
14 lines
235 B
Java
14 lines
235 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
|
|
@Nullable
|
|
private static native String getNext();
|
|
|
|
public static void test() {
|
|
String v = null;
|
|
while ((v = getNext()) != null) {
|
|
v.substring(1);
|
|
}
|
|
}
|
|
} |