Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectReferenceInClosureInSuperConstructorCall.kt
T
2021-06-17 13:24:12 +03:00

4 lines
92 B
Kotlin
Vendored

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