Files
kotlin-fork/idea/testData/navigation/gotoDeclaration/thisExtensionFunction.test
T
Nikolay Krasko daaa59a1ad Navigate to receiver from this in extension function (KT-16991)
#KT-16991 Fixed
 #KT-13013 In Progress
2017-03-23 13:37:05 +03:00

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)
}