Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/initwithgetter.fir.kt
T
Dmitrii Gridin 9a4a3d1f49 [LL FIR] introduce test with reversed resolve order
^KT-56543

Merge-request: KT-MR-9299
Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
2023-03-22 17:34:07 +00:00

21 lines
328 B
Kotlin
Vendored

// IGNORE_REVERSED_RESOLVE
class My {
val x: Int
get() = field + if (z != "") 1 else 0
val y: Int
get() = field - if (z == "") 0 else 1
val w: Int
init {
// Safe, val never has a setter
x = 0
this.y = 0
// Unsafe
w = this.x + y
}
val z = "1"
}