a4239afcb3
#KT-37842 Fixed
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
suspend fun sus(i: Int, block: suspend (Int) -> Unit) {
|
|
block(i)
|
|
}
|
|
|
|
suspend fun main() {
|
|
sus(1) {<caret>
|
|
}
|
|
} |