Frontend: fixed explicit receiver kind for dynamic call with implicit dispatch receiver.
Additionally added tests for other cases.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class A {
|
||||
fun dynamic.foo() {}
|
||||
}
|
||||
|
||||
fun bar(a: A, b: dynamic) {
|
||||
with (a) {
|
||||
b.<caret>foo()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user