Files
kotlin-fork/compiler/testData/debug/stepping/kt15259.kt
T
2024-03-04 15:05:23 +00:00

38 lines
614 B
Kotlin
Vendored

// FILE: test.kt
interface ObjectFace
private fun makeFace() = object : ObjectFace {
init { 5 }
}
fun box() {
makeFace()
}
// EXPECTATIONS JVM_IR
// test.kt:12 box
// test.kt:6 makeFace
// test.kt:6 <init>
// test.kt:8 <init>
// test.kt:6 <init>
// test.kt:9 makeFace
// test.kt:12 box
// test.kt:13 box
// EXPECTATIONS JS_IR
// test.kt:12 box
// test.kt:9 makeFace
// test.kt:6 <init>
// test.kt:13 box
// EXPECTATIONS WASM
// test.kt:12 $box
// test.kt:6 $makeFace (25, 25)
// test.kt:8 $<no name provided>.<init>
// test.kt:9 $<no name provided>.<init>
// test.kt:9 $makeFace
// test.kt:13 $box