Completion: add tests for case with overloaded function with lambda with receiver parameter
Relates to #KT-31073
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package foo
|
||||
|
||||
fun <R> bar(block: () -> R): R = TODO()
|
||||
fun <T, R> T.bar(block: T.() -> R): R = TODO()
|
||||
|
||||
class X {
|
||||
val b = ba<caret>
|
||||
}
|
||||
|
||||
// TAIL_TEXT: " {...} (block: () -> R) (foo)"
|
||||
Reference in New Issue
Block a user