8e3fd0efc3
suggest trailing lambda variant in completion.
9 lines
272 B
Kotlin
Vendored
9 lines
272 B
Kotlin
Vendored
fun xfoo(p: suspend () -> Unit) {}
|
|
|
|
fun test() {
|
|
xf<caret>
|
|
}
|
|
|
|
// EXIST: { itemText:"xfoo", tailText:" {...} (p: suspend () -> Unit) (<root>)", typeText:"Unit" }
|
|
// EXIST: { itemText:"xfoo", tailText:"(p: suspend () -> Unit) (<root>)", typeText:"Unit" }
|
|
// NOTHING_ELSE |