21 lines
420 B
Plaintext
Vendored
21 lines
420 B
Plaintext
Vendored
FILE: superMember.kt
|
|
public open class A : R|kotlin/Any| {
|
|
public constructor(): R|A| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public open fun foo(): R|kotlin/Unit| {
|
|
}
|
|
|
|
}
|
|
public final class B : R|A| {
|
|
public constructor(): R|B| {
|
|
super<R|A|>()
|
|
}
|
|
|
|
public final fun bar(): R|kotlin/Unit| {
|
|
this@R|/B|.R|/A.foo|()
|
|
}
|
|
|
|
}
|