Files
kotlin-fork/compiler/testData/ir/irText/classes/initVal.kt
T
Mikhail Glukhikh 0d5cfa97a5 FIR2IR: read & set dispatch & extension receivers
NB: this commit includes receiver-based assertions yet failing for some tests
2019-08-30 11:47:31 +03:00

15 lines
185 B
Kotlin
Vendored

// FIR_IDENTICAL
class TestInitValFromParameter(val x: Int)
class TestInitValInClass {
val x = 0
}
class TestInitValInInitBlock {
val x: Int
init {
x = 0
}
}