Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/callResolution/superAny.fir.txt
T
2022-12-14 21:46:41 +00:00

32 lines
983 B
Plaintext
Vendored

FILE: superAny.kt
public abstract interface A : R|kotlin/Any| {
}
public open class B : R|kotlin/Any| {
public constructor(): R|B| {
super<R|kotlin/Any|>()
}
public open override operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean| {
^equals this@R|/B|.super<R|kotlin/Any|>.R|kotlin/Any.equals|(R|<local>/other|)
}
public open override fun hashCode(): R|kotlin/Int| {
^hashCode this@R|/B|.super<R|kotlin/Any|>.R|kotlin/Any.hashCode|()
}
}
public final class C : R|A|, R|B| {
public constructor(): R|C| {
super<R|B|>()
}
public open override operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean| {
^equals this@R|/C|.super<R|B|>.R|/B.equals|(R|<local>/other|)
}
public open override fun hashCode(): R|kotlin/Int| {
^hashCode this@R|/C|.super<R|B|>.R|/B.hashCode|()
}
}