Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
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)