Files
kotlin/compiler/testData/codegen/box/strings/stringPlusOnlyWorksOnString.kt

8 lines
123 B
Kotlin
Vendored

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