mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
9 lines
158 B
Java
9 lines
158 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class J {
|
|
|
|
public static class A {
|
|
public A(int i, @NotNull String s, @NotNull B B) {
|
|
}
|
|
}
|
|
} |