Convert Receiver to Parameter Intention: Update function descriptor after template is finished (otherwise some references may be processed incorrectly)
This commit is contained in:
committed by
Ilya Gorbunov
parent
51566942f6
commit
8c3fcf69f2
@@ -0,0 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
class A(val s: String) {}
|
||||
|
||||
fun <caret>A.extend() = println(this.s)
|
||||
@@ -0,0 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
class A(val s: String) {}
|
||||
|
||||
fun <caret>extend(a: A) = println(a.s)
|
||||
Reference in New Issue
Block a user