Files
kotlin-fork/idea/testData/hierarchy/calls/callers/callInsideAnonymousFun/main0.kt
T
Alexey Sedunov 10941ae732 Call Hierarchy: Refactoring
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
2017-08-02 13:08:06 +03:00

11 lines
109 B
Kotlin
Vendored

fun <caret>foo() = 1
fun bar() {
val x = fun () {
val y = foo()
}
}
fun baz() {
bar()
}