Teach index working with source roots with package prefix
#KT-9167 Fixed
Original commit: 23e35ab112
This commit is contained in:
committed by
Nikolay Krasko
parent
048725c3f0
commit
b77f4ffe9f
@@ -0,0 +1,4 @@
|
||||
package xxx;
|
||||
|
||||
public class OtherJava {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package xxx;
|
||||
|
||||
public class Test {
|
||||
String test(OtherJava otherJava) {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package xxx
|
||||
|
||||
val test = Test().test(null)
|
||||
Reference in New Issue
Block a user