daaa59a1ad
#KT-16991 Fixed #KT-13013 In Progress
18 lines
186 B
Plaintext
Vendored
18 lines
186 B
Plaintext
Vendored
// FILE: before.kt
|
|
interface Foo
|
|
|
|
fun foo(a: Any) {}
|
|
|
|
fun Foo.bar() {
|
|
foo(this<caret>)
|
|
}
|
|
|
|
|
|
// FILE: after.kt
|
|
interface Foo
|
|
|
|
fun foo(a: Any) {}
|
|
|
|
fun <caret>Foo.bar() {
|
|
foo(this)
|
|
} |