11 lines
230 B
Plaintext
Vendored
11 lines
230 B
Plaintext
Vendored
import org.jetbrains.annotations.NotNull;
|
|
|
|
import kotlin.properties.ReadOnlyProperty;
|
|
|
|
class J {
|
|
|
|
public static class Foo<T> implements ReadOnlyProperty<A<T>, B> {
|
|
public Foo(T t, @NotNull String s) {
|
|
}
|
|
}
|
|
} |