mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-16 15:52:18 +00:00
7 lines
123 B
Groff
Vendored
7 lines
123 B
Groff
Vendored
import org.jetbrains.annotations.NotNull;
|
|
|
|
class A {
|
|
void f(@NotNull String s) {
|
|
System.out.println(s);
|
|
}
|
|
} |