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