20 lines
387 B
Plaintext
Vendored
20 lines
387 B
Plaintext
Vendored
FILE: simple.kt
|
|
public open class A : R|kotlin/Any| {
|
|
public constructor(): R|A| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public open fun foo(): R|kotlin/Unit| {
|
|
}
|
|
|
|
}
|
|
public open class B : R|A| {
|
|
public constructor(): R|B| {
|
|
super<R|A|>()
|
|
}
|
|
|
|
public open override fun foo(): R|kotlin/Unit| {
|
|
}
|
|
|
|
}
|