Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
debug
/
localVariables
/
localFunUnused.kt
blob: e7e43080bed47a1a2045145cbcbb2cad5fe6d184 [
file
]
//FILE: test.kt
fun foo
()
{
fun bar
()
{
}
}
fun box
()
{
foo
()
}
// EXPECTATIONS JVM_IR
// test.kt:10 box:
// test.kt:7 foo:
// test.kt:11 box:
// EXPECTATIONS WASM
// test.kt:10 $box: (4)
// test.kt:7 $foo: (1)
// test.kt:11 $box: (1)