Files
kotlin-fork/compiler/testData/multiplatform/incompatibleFunctions/common.kt
T
2016-12-13 18:00:00 +03:00

15 lines
295 B
Kotlin
Vendored

header infix fun Int.plus(s: CharSequence): Int
header fun Int.minus(s: String): Int
header operator fun Double.times(x: CharArray)
header fun Double.divide(x: ByteArray)
header external fun f1()
header fun g1()
header inline fun f2()
header fun g2()
header tailrec fun f3()
header fun g3()