4 lines
83 B
Kotlin
4 lines
83 B
Kotlin
abstract class Owner<T, X: List<T>> {
|
|
fun <R: T> <caret>f(t: T, r: R): R = r
|
|
}
|