Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/multifile/simpleStarImport.txt
T
2020-03-19 09:51:01 +03:00

17 lines
427 B
Plaintext
Vendored

FILE: B.kt
public abstract expect interface Other : R|kotlin/Any| {
}
public final expect class Another : R|kotlin/Any| {
public constructor(): R|b/d/Another| {
super<R|kotlin/Any|>()
}
}
public final fun baz(): R|kotlin/Unit| {
}
FILE: A.kt
public final fun foo(arg: R|b/d/Other|): R|b/d/Another|
public final fun bar(): R|kotlin/Unit| {
R|b/d/baz|()
}