10941ae732
Do not rely on light methods to search usages as some elements don't have them (e.g. local functions) #KT-9288 Fixed #KT-14428 Fixed
11 lines
109 B
Kotlin
Vendored
11 lines
109 B
Kotlin
Vendored
fun <caret>foo() = 1
|
|
|
|
fun bar() {
|
|
val x = fun () {
|
|
val y = foo()
|
|
}
|
|
}
|
|
|
|
fun baz() {
|
|
bar()
|
|
} |