Files
kotlin-fork/compiler/testData/diagnostics/tests/inline/kt19679.kt
T
2017-08-17 14:24:00 +02:00

4 lines
108 B
Kotlin
Vendored

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