50bfd19959
#KT-63703 Fixed
11 lines
193 B
Kotlin
Vendored
11 lines
193 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun interface Runnable {
|
|
fun run()
|
|
}
|
|
|
|
fun foo(r: Runnable, f: Runnable) = 1
|
|
fun foo(r: Runnable, f: () -> Unit) = ""
|
|
|
|
fun test(): String {
|
|
return foo(Runnable {}, {})
|
|
} |