Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/multifile/simpleStarImport.fir.txt
T
Dmitriy Novozhilov c60ba51f8f [FIR] Include generated declarations into FIR dump in tests
Also include non root package directive of FirFile to dump
2021-10-12 17:26:34 +03:00

17 lines
368 B
Plaintext
Vendored

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