daaa59a1ad
#KT-16991 Fixed #KT-13013 In Progress
14 lines
164 B
Plaintext
Vendored
14 lines
164 B
Plaintext
Vendored
// FILE: before.kt
|
|
class A {
|
|
fun String.foo() {
|
|
this<caret>@A
|
|
}
|
|
}
|
|
|
|
// FILE: after.kt
|
|
class <caret>A {
|
|
fun String.foo() {
|
|
this@A
|
|
}
|
|
}
|