Handle fake overrides of members of Any in BuiltInsReferenceResolver
This commit is contained in:
@@ -7,9 +7,15 @@ class C : A() {
|
||||
val constant = 42
|
||||
// Some comment
|
||||
override val bar: Int = 0
|
||||
override fun equals(other: Any?): Boolean {
|
||||
return super<A>.equals(other)
|
||||
}
|
||||
override fun foo(value: Int) {
|
||||
super<A>.foo(value)
|
||||
}
|
||||
override fun hashCode(): Int {
|
||||
return super<A>.hashCode()
|
||||
}
|
||||
|
||||
/*
|
||||
Some another comment
|
||||
|
||||
Reference in New Issue
Block a user