1071919706
Also remove any mentions of NewInference, and rename some tests.
10 lines
122 B
Kotlin
Vendored
10 lines
122 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun interface Foo {
|
|
fun invoke(): String
|
|
}
|
|
|
|
fun foo(f: Foo) = f.invoke()
|
|
|
|
fun test() = foo { "OK" }
|