Files
kotlin-fork/js/js.translator/testData/box/callableReference/function/stringNativeExtension.kt
T
2018-04-19 13:17:28 +03:00

11 lines
179 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1112
package foo
fun box(): String {
var s = "abc"
assertEquals("ABC", (String::toUpperCase)(s))
return "OK"
}