KT-29926: Support completion of suspend lambda body and parameters
- ^KT-29926 Fixed
This commit is contained in:
committed by
Roman Golyshev
parent
da4097f488
commit
e89a87b2e3
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
fun foo(p: suspend (String, Int) -> Unit){}
|
||||
fun foo(p: suspend (Char, xx: Any) -> Unit){}
|
||||
|
||||
fun bar() {
|
||||
foo(<caret>)
|
||||
}
|
||||
|
||||
// ABSENT: "{ s, i -> ... }"
|
||||
// ABSENT: "{ c, xx -> ... }"
|
||||
// EXIST: "{ String, Int -> ... }"
|
||||
// EXIST: "{ Char, xx -> ... }"
|
||||
Reference in New Issue
Block a user