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