41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
10 lines
188 B
Kotlin
10 lines
188 B
Kotlin
fun Int.plus(s: String) : String {
|
|
System.out?.println("Int.plus(s: String) called")
|
|
return s
|
|
}
|
|
|
|
fun box() : String {
|
|
val s = "${1 + "a"}"
|
|
return if(s == "a") "OK" else "fail"
|
|
}
|