Files
kotlin-fork/idea/testData/navigation/gotoDeclaration/thisExtensionLambda.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

21 lines
229 B
Plaintext
Vendored

// FILE: before.kt
interface Foo
fun foo(a: Foo.() -> Unit) {}
fun bar() {
foo {
<caret>this
}
}
// FILE: after.kt
interface Foo
fun foo(a: Foo.() -> Unit) {}
fun bar() {
foo <caret>{
this
}
}