Files
kotlin-fork/compiler/testData/multiplatform/incompatibleFunctions/common.kt
T
Alexander Udalov a57455ce62 Relax requirements on function modifiers in multiplatform projects
Allow to implement header functions with external/tailrec/inline/infix/operator
functions
2016-12-19 11:53:39 +03:00

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()