14 lines
288 B
Plaintext
Vendored
14 lines
288 B
Plaintext
Vendored
FILE: TwoDeclarationsInSameFile.kt
|
|
public open class A : R|kotlin/Any| {
|
|
public constructor(): R|p/A| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
}
|
|
public final class B : R|p/A| {
|
|
public constructor(): R|p/B| {
|
|
super<R|p/A|>()
|
|
}
|
|
|
|
}
|