Files
kotlin/compiler/testData/codegen/box/strings/stringPlusOnlyWorksOnString.kt
2018-06-09 19:15:38 +03:00

9 lines
148 B
Kotlin
Vendored

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