10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
fun foo<T, P: T>() = 42
|
|
|
|
interface A
|
|
interface B : A
|
|
interface C : B
|
|
|
|
interface Consumer<in T>
|
|
interface Producer<out T>
|
|
|
|
interface My<T> |