KT-35042 Fix InsertHandlerProvider.kt to work with suspend functional parameters
- ^KT-35042 Fixed - Also, fix review suggestions for KOTLIN-CR-3495
This commit is contained in:
committed by
Roman Golyshev
parent
6f234beb9c
commit
3112d70420
+7
@@ -0,0 +1,7 @@
|
||||
fun <T1, T2> T1.foo(handler: suspend (T2) -> Boolean) {}
|
||||
|
||||
fun f() {
|
||||
"".<caret>
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
fun <T1, T2> T1.foo(handler: suspend (T2) -> Boolean) {}
|
||||
|
||||
fun f() {
|
||||
"".foo<<caret>> { }
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
Reference in New Issue
Block a user