Files
kotlin-fork/compiler/testData/debug/localVariables/localFunUnused.kt
T
2023-12-18 21:42:35 +00:00

17 lines
153 B
Kotlin
Vendored

//FILE: test.kt
fun foo() {
fun bar() {
}
}
fun box() {
foo()
}
// EXPECTATIONS
// test.kt:10 box:
// test.kt:7 foo:
// test.kt:11 box: