Files
kotlin-fork/compiler/testData/codegen/box/strings/kt889.kt
T
2016-11-09 21:41:12 +03:00

13 lines
293 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
operator 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"
}