Files
kotlin-fork/idea/testData/fir/multiModule/mppMembers/jvm/jvm.txt
T

30 lines
637 B
Plaintext
Vendored

FILE: jvm.kt
public open actual class A : R|kotlin/Any| {
public constructor(): super<R|kotlin/Any|>()
public final actual fun foo(): R|kotlin/Unit| {
}
public final fun bar(): R|kotlin/Unit| {
}
}
public final class C : R|B| {
public constructor(): super<R|B|>()
public final fun test(): R|kotlin/Unit| {
R|/A.foo|()
R|/A.bar|()
}
}
public final class D : R|A| {
public constructor(): super<R|A|>()
public final fun test(): R|kotlin/Unit| {
R|/A.foo|()
R|/A.bar|()
}
}