Test: add java source files as JavaSourceRoot

so that those can be properly populated in SingleJavaRootsIndex
This commit is contained in:
Jinseong Jeon
2022-06-13 15:36:57 -07:00
committed by Ilya Kirillov
parent cb2a54cef8
commit a2da690afd
37 changed files with 285 additions and 93 deletions
@@ -3,5 +3,5 @@ FILE: main.kt
public final fun test(): R|kotlin/Unit| {
lval some: R|foo/Some| = R|foo/Some.Some|()
lval another: <ERROR TYPE REF: Unresolved name: Another> = <Unresolved name: Another>#()
lval another: R|foo/Another| = R|foo/Another.Another|()
}
@@ -11,5 +11,5 @@ package foo
fun test() {
val some = Some()
val another = <!UNRESOLVED_REFERENCE!>Another<!>()
val another = Another()
}