How come this compiles successfully. Referencing t...
# announcements
k
How come this compiles successfully. Referencing the class fails at runtime with
VerifyError
Copy code
open class Base(val me: String) {

  companion object : Base(string()) {
  
    private fun string() = "companion object"
    
  }
}