Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfg/initBlockAndInPlaceLambda.kt
T
2020-03-19 09:51:01 +03:00

14 lines
155 B
Kotlin
Vendored

// !DUMP_CFG
interface B
interface A {
val b: B?
}
class C(a: A, b: b) {
init {
val c = a.b?.let {
C(a, it)
}
}
}