mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
16 lines
345 B
Java
16 lines
345 B
Java
/*
|
|
May be null (s; line#12)
|
|
's' was assigned (=; line#11)
|
|
Method 'loadString' is annotated as 'nullable' (@Nullable; line#15)
|
|
*/
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
void test() {
|
|
String s = loadString();
|
|
System.out.println(<selection>s</selection>.trim());
|
|
}
|
|
|
|
native @Nullable String loadString();
|
|
} |