Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/kt19679.fir.kt
T

4 lines
76 B
Kotlin
Vendored

inline fun test(s: () -> Unit, p: (() -> Unit)?) {
s()
p?.invoke()
}