41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
121 B
Kotlin
7 lines
121 B
Kotlin
val Int.test = "test"
|
|
|
|
fun box(): String {
|
|
val x = "a ${1.test}"
|
|
return if (x == "a test") "OK" else "Fail $x"
|
|
}
|