Files
kotlin-fork/compiler/testData/debug/stepping/commentBeforeCompanionProperty.kt
T
2023-08-15 17:03:11 +00:00

28 lines
454 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
class AWithCompanion {
companion object {
//Comment before
val compPropVal = 1
}
}
fun box() {
AWithCompanion.compPropVal
}
// EXPECTATIONS JVM JVM_IR
// test.kt:12 box
// test.kt:7 <clinit>
// test.kt:7 getCompPropVal
// test.kt:7 getCompPropVal
// test.kt:12 box
// test.kt:13 box
// EXPECTATIONS JS_IR
// test.kt:12 box
// test.kt:7 <init>
// test.kt:5 <init>
// test.kt:13 box