Files
kotlin/compiler/testData/codegen/box/extensionFunctions/simple.kt
2013-01-28 18:20:33 +04:00

6 lines
142 B
Kotlin

fun StringBuilder.first() = this.charAt(0)
fun foo() = StringBuilder("foo").first()
fun box() = if (foo() == 'f') "OK" else "Fail ${foo()}"