Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectReferenceInClosureInSuperConstructorCall.kt
T

4 lines
92 B
Kotlin
Vendored

// FIR_IDENTICAL
abstract class Base(val lambda: () -> Any)
object Test : Base({ -> Test })