Files
kotlin-fork/js/js.translator/testData/lineNumbers/propertyWithoutInitializer.kt
T
Alexander Korepanov 6df0e0c847 [JS FIR] Enable FirJsLineNumberTests for FIR
^KT-64426 Fixed
2024-01-10 19:02:15 +00:00

15 lines
186 B
Kotlin
Vendored

abstract class A {
val x: Int
abstract val y: Int
init {
x = 23
}
}
class B(override val y: Int): A()
// LINES(JS_IR): 1 1 7 7 2 2 2 12 12 12 12 12 12 12 12