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

6 lines
91 B
Kotlin
Vendored

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