51b01b5d7d
Also don't do unnecessary and failing casts in CodegenAnnotatingVisitor for SAM adapters #KT-3173 Fixed #KT-3999 Fixed #KT-4682 Fixed
9 lines
144 B
Kotlin
9 lines
144 B
Kotlin
fun foo(compareTo: Any.(p: Function0<Int>) -> Int, p: () -> Int) {
|
|
p < p
|
|
}
|
|
|
|
fun box(): String {
|
|
foo({ it() }, { 42 })
|
|
return "OK"
|
|
}
|