c60ba51f8f
Also include non root package directive of FirFile to dump
30 lines
767 B
Plaintext
Vendored
30 lines
767 B
Plaintext
Vendored
Module: m1
|
|
FILE: base.kt
|
|
package hello
|
|
|
|
public final class Hello : R|kotlin/Any| {
|
|
public constructor(msg: R|kotlin/String|): R|hello/Hello| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final val msg: R|kotlin/String| = R|<local>/msg|
|
|
public get(): R|kotlin/String|
|
|
|
|
}
|
|
public final class Test : R|kotlin/Any| {
|
|
public constructor(set: R|java/util/Set<*>|): R|hello/Test| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final val set: R|java/util/Set<*>| = R|<local>/set|
|
|
public get(): R|java/util/Set<*>|
|
|
|
|
}
|
|
Module: m2
|
|
FILE: user.kt
|
|
package test
|
|
|
|
public final fun foo(hello: R|hello/Hello|): R|kotlin/String| {
|
|
^foo R|<local>/hello|.R|hello/Hello.msg|
|
|
}
|