1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
20 lines
391 B
Kotlin
20 lines
391 B
Kotlin
fun String.foo() : String {
|
|
fun Int.bar() : String {
|
|
fun Long.baz() : String {
|
|
val x = this@foo
|
|
val y = this@bar
|
|
val z = this@baz
|
|
return "$x $y $z"
|
|
}
|
|
return 0L.baz()
|
|
}
|
|
return 42.bar()
|
|
}
|
|
|
|
fun box() : String {
|
|
val result = "OK".foo()
|
|
|
|
if (result != "OK 42 0") return "fail: $result"
|
|
|
|
return "OK"
|
|
} |