ae608ea67f
This fixes missing `USED_AS_EXPRESSION` recordings ^KT-47527 Fixed
10 lines
163 B
Kotlin
Vendored
10 lines
163 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun <R : Number> Number.convert(): R = TODO()
|
|
|
|
fun foo(arg: Number) {
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val x: Int = 0
|
|
foo(x.convert())
|
|
} |