16 lines
315 B
Plaintext
Vendored
16 lines
315 B
Plaintext
Vendored
FILE: common.kt
|
|
public open expect class A : R|kotlin/Any| {
|
|
public constructor(): R|A| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final fun foo(): R|kotlin/Unit|
|
|
|
|
}
|
|
public open class B : R|A| {
|
|
public constructor(): R|B| {
|
|
super<R|A|>()
|
|
}
|
|
|
|
}
|