This doesn't make any sense ``` abstract class So...
# announcements
j
This doesn't make any sense
Copy code
abstract class Something() {
    abstract val thing: String
    init {
        println(thing)
    }
}

class Else(override val thing: String) : Something() {

}

fun main(args: Array<String>) {
    Else("test")
}