Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
navigation
/
gotoDeclaration
/
itExtensionLambda.test
blob: ee58624db7a0e8dca0a1c60e30e9de89416d8c64 [
file
] [
log
] [
blame
]
// FILE: before.kt
interface
Foo
interface
Bar
fun foo
(
a
:
Foo
.(
Bar
)
->
Unit
)
{}
fun bar
()
{
foo
{
<caret>
it
}
}
// FILE: after.kt
interface
Foo
interface
Bar
fun foo
(
a
:
Foo
.(
Bar
)
->
Unit
)
{}
fun bar
()
{
foo
{<
caret
>
it
}
}