mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
15 lines
234 B
Kotlin
Vendored
15 lines
234 B
Kotlin
Vendored
fun <T, P, E> foo() = 42
|
|
|
|
interface A
|
|
interface B : A
|
|
interface C : B
|
|
|
|
interface Consumer<in T>
|
|
interface Producer<out T>
|
|
interface Inv<T>
|
|
|
|
interface My<T>
|
|
interface Successor<T> : My<T>
|
|
|
|
interface Two<T, P>
|
|
interface Fun<in T, out R> |