Files
kotlin-fork/compiler/testData/ir/irText/expressions/argumentMappedWithError.kt
T
2023-03-22 15:18:17 +00:00

14 lines
219 B
Kotlin
Vendored

// FIR_IDENTICAL
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
fun <R : Number> Number.convert(): R = TODO()
fun foo(arg: Number) {
}
fun main(args: Array<String>) {
val x: Int = 0
foo(x.convert())
}