mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
220 B
Java
15 lines
220 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class X {
|
|
public static String main(String[] args) {
|
|
<selection>System.out.println();
|
|
return f();
|
|
</selection>
|
|
}
|
|
|
|
@NotNull
|
|
String f() {
|
|
return "";
|
|
}
|
|
}
|