Also this one: ``` class Lateinit { lateinit ...
# kontributors
m
Also this one:
Copy code
class Lateinit {
    lateinit var x: String

    constructor() {
        x = ""
    }
}
Note: lateinit cannot have primitive type 🙂
😞 4