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

7 lines
92 B
Kotlin
Vendored

// !DUMP_CFG
fun test(func: (() -> Unit)?) {
if (func != null) {
func()
}
}