Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/lambdaInObject.kt
T

19 lines
318 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Wise {
fun doIt(): Int
}
fun Wise(f: () -> Int) = object: Wise {
override fun doIt() = f()
}
class My {
// Still dangerous (???), nobogy can guarantee what Wise() will do with this lambda
val x = Wise { foo() }
val y = 42
fun foo() = y
fun bar() = x.doIt()
}