Files
kotlin-fork/compiler/testData/codegen/box/strings/stringPlusOnlyWorksOnString.kt
T
2021-10-01 17:18:49 +03:00

9 lines
148 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
fun box(): String {
var x: MutableCollection<Int> = ArrayList()
x + ArrayList()
return "OK"
}