af247c3344
Don't use `main` function in these tests, because `main` function has specific mangling rules in JVM. Use other function name. ^KT-57755
12 lines
166 B
Kotlin
Vendored
12 lines
166 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun <R : Number> Number.convert(): R = TODO()
|
|
|
|
fun foo(arg: Number) {
|
|
}
|
|
|
|
fun runMe(args: Array<String>) {
|
|
val x: Int = 0
|
|
foo(x.convert())
|
|
}
|