1071919706
Also remove any mentions of NewInference, and rename some tests.
11 lines
132 B
Kotlin
Vendored
11 lines
132 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun interface KRunnable {
|
|
fun invoke()
|
|
}
|
|
|
|
fun test(a: Any?) {
|
|
a as () -> Unit
|
|
KRunnable(a).invoke()
|
|
}
|