1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
6 lines
139 B
Kotlin
6 lines
139 B
Kotlin
fun StringBuilder.first() = this.get(0)
|
|
|
|
fun foo() = StringBuilder("foo").first()
|
|
|
|
fun box() = if (foo() == 'f') "OK" else "Fail ${foo()}"
|