mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
var x: MutableCollection<Int> = ArrayList()
|
|
x + ArrayList()
|
|
return "OK"
|
|
}
|