scaventz
03/17/2022, 5:31 PMtoString()
and hashCode()
) are marked as isFakeOverride = true
, which makes me wonder what the semantics/purpose of this property?udalov
open class A {
fun foo() {}
}
class B : A() {
// "fake override" for fun foo
}
mcpiroman
03/18/2022, 10:29 AMopen
? Or do final methods count too?udalov