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