8 lines
117 B
Plaintext
Vendored
8 lines
117 B
Plaintext
Vendored
import org.jetbrains.annotations.NotNull;
|
|
|
|
interface I {
|
|
|
|
boolean foo(int n);
|
|
|
|
void bar(@NotNull String s);
|
|
} |