Files
kotlin/compiler/testData/codegen/box/extensionFunctions/simple.kt
2015-10-11 19:59:31 +03:00

6 lines
139 B
Kotlin
Vendored

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