Files
2020-12-16 19:52:30 +03:00

7 lines
92 B
Kotlin
Vendored

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