Files
kotlin-fork/analysis/low-level-api-fir/testData/contextCollector/localFunctionExpression.kt
T
Yan Zhulanow a848a0233d [Analysis API] Add more ContextCollector tests inspired by on-air tests
As the on-air analysis is obsolete, related tests are going to be
deleted. Here we add cases not yet covered by 'ContextCollector' tests.
2024-01-18 17:12:28 +00:00

8 lines
110 B
Kotlin
Vendored

fun test() {
fun local(n: Int) {
<expr>call(n)</expr>
}
local(5)
}
fun call(obj: Any?) {}