Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
debug
/
localVariables
/
emptyFun.kt
blob: 367141ba56dabede3a102c8eb19dad97e0f9b86c [
file
]
// FILE: test.kt
fun foo
()
{}
fun box
()
{
foo
()
}
// EXPECTATIONS JVM_IR
// test.kt:7 box:
// test.kt:4 foo:
// test.kt:8 box:
// EXPECTATIONS WASM
// test.kt:7 $box: (4)
// test.kt:4 $foo: (12)
// test.kt:8 $box: (1)