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