b9a220c624
#KT-38139 Fixed
11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
// "Make test suspend" "true"
|
|
suspend fun foo() {}
|
|
|
|
inline fun bar(f: () -> Unit) {
|
|
}
|
|
|
|
fun test() {
|
|
bar {
|
|
<caret>foo()
|
|
}
|
|
} |