Temporary workaround for gradle issue: wrong navigation for included plugin source code

https://github.com/gradle/gradle/issues/13783
^KT-39522
This commit is contained in:
Natalia Selezneva
2020-07-24 17:04:03 +03:00
parent 7dd687cf00
commit 7b80be5c9d
4 changed files with 32 additions and 5 deletions
@@ -0,0 +1,7 @@
package test
object KObject {
fun foo() {
}
}
@@ -0,0 +1,9 @@
// NOTE: test should fail when https://github.com/gradle/gradle/issues/13783 is fixed
// and the related workaround in SourceNavigationHelper is removed
// Then test can be removed
test.KObject.<caret>foo()
// DEPENDENCIES: classpath:module-classes
// REF: (in test.KObject).foo()
// FILE: test/custom.kt