mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
19 lines
228 B
Kotlin
Vendored
19 lines
228 B
Kotlin
Vendored
// !API_VERSION: 1.1
|
|
|
|
@SinceKotlin("0.9")
|
|
fun ok1() {}
|
|
|
|
@SinceKotlin("1.0")
|
|
fun ok2() {}
|
|
|
|
@SinceKotlin("1.1")
|
|
fun ok3() {}
|
|
|
|
@SinceKotlin("0.9.9")
|
|
fun ok4() {}
|
|
|
|
fun t1() = ok1()
|
|
fun t2() = ok2()
|
|
fun t3() = ok3()
|
|
fun t4() = ok4()
|