mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
179 B
Java
10 lines
179 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class J {
|
|
|
|
public static class Foo extends A {
|
|
public Foo(int i, @NotNull String s) {
|
|
super();
|
|
}
|
|
}
|
|
} |