7 lines
92 B
Kotlin
Vendored
7 lines
92 B
Kotlin
Vendored
// !DUMP_CFG
|
|
fun test(func: (() -> Unit)?) {
|
|
if (func != null) {
|
|
func()
|
|
}
|
|
}
|