Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfg/postponedLambdaInConstructor.kt
T
2020-12-16 19:52:30 +03:00

10 lines
137 B
Kotlin
Vendored

// !DUMP_CFG
abstract class A(func: () -> String)
class B(val s: String) : A(s.let { { it } }) {
fun foo() {
foo()
}
}