Teach index working with source roots with package prefix
#KT-9167 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
c0739ef53c
commit
23e35ab112
@@ -0,0 +1,13 @@
|
||||
package some
|
||||
|
||||
import bad.prefix.KotlinTestInBadPrefix
|
||||
import good.prefix.KotlinTestInGoodPrefix
|
||||
import good.prefix.JavaTest;
|
||||
import test.JavaRef
|
||||
|
||||
val goodTest = KotlinTestInGoodPrefix()
|
||||
val badTest = KotlinTestInBadPrefix()
|
||||
val javaTest = JavaTest().bar()
|
||||
val javaRef = JavaRef().foo(null)
|
||||
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package test;
|
||||
|
||||
import good.prefix.JavaTest;
|
||||
|
||||
public class JavaRef {
|
||||
public void foo(JavaTest javaTest) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user