``` val z: Int init { fun x() { ...
# announcements
m
Copy code
val z: Int

    init {
        fun x() {
            z = 2
        }
        z = 1
        x()
    }
Is this already reported? Shouldn't compile imho.
s
mg6maciej: Interesting