Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt1172.kt
T
2016-11-21 18:20:33 +03:00

17 lines
348 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// not sure if it's ok to change Object to Any
// WITH_RUNTIME
package test.regressions.kt1172
public fun scheduleRefresh(vararg files : Object) {
ArrayList<Object>(files.map { it })
}
fun box(): String {
scheduleRefresh()
return "OK"
}