mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
229 B
Java
Vendored
10 lines
229 B
Java
Vendored
import kotlin.properties.ReadOnlyProperty;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class J {
|
|
|
|
public static class Foo<T> implements ReadOnlyProperty<A<T>, B> {
|
|
public Foo(T t, @NotNull String s) {
|
|
}
|
|
}
|
|
} |