mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
344 B
Kotlin
Vendored
14 lines
344 B
Kotlin
Vendored
expect fun <T> f1(): T
|
|
|
|
expect fun <T> f2(t: T)
|
|
|
|
expect fun <K : Enum<K>, V : MutableList<out K>> f3(v: Map<V, Enum<in K>>, w: Comparable<*>)
|
|
|
|
expect fun <T: Comparable<T>> Array<out T>.sort(): Unit
|
|
|
|
expect class C1<A>
|
|
expect class C2<B : C2<B>>
|
|
expect class C3<D, E : MutableList<in D>>
|
|
|
|
expect abstract class AbstractList<F> : MutableList<F>
|