Files
kotlin-fork/compiler/testData/codegen/box/intrinsics/charToInt.kt
T
2018-06-09 19:15:38 +03:00

10 lines
172 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
val x: Any = 'A'
var y = 0
if (x is Char) {
y = x.toInt()
}
return if (y == 65) "OK" else "fail"
}