1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
7 lines
135 B
Kotlin
7 lines
135 B
Kotlin
val Int.test: String get() = "test"
|
|
|
|
fun box(): String {
|
|
val x = "a ${1.test}"
|
|
return if (x == "a test") "OK" else "Fail $x"
|
|
}
|