a57455ce62
Allow to implement header functions with external/tailrec/inline/infix/operator functions
10 lines
171 B
Kotlin
Vendored
10 lines
171 B
Kotlin
Vendored
header infix fun Int.plus(s: CharSequence): Int
|
|
|
|
header operator fun Double.times(x: CharArray)
|
|
|
|
header external fun f1()
|
|
|
|
header inline fun f2()
|
|
|
|
header tailrec fun f3()
|