c60ba51f8f
Also include non root package directive of FirFile to dump
26 lines
508 B
Plaintext
Vendored
26 lines
508 B
Plaintext
Vendored
FILE: A.kt
|
|
package a
|
|
|
|
public final class Outer : R|kotlin/Any| {
|
|
public constructor(): R|a/Outer| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public open class Nested : R|kotlin/Any| {
|
|
public constructor(): R|a/Outer.Nested| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
FILE: B.kt
|
|
package b
|
|
|
|
public final class My : R|a/Outer.Nested| {
|
|
public constructor(): R|b/My| {
|
|
super<R|a/Outer.Nested|>()
|
|
}
|
|
|
|
}
|