KT-3542 Can't navigate to property implementation

#KT-3542 Fixed
This commit is contained in:
Nikolay Krasko
2013-04-26 18:38:43 +04:00
parent 312bd6f828
commit 5cc49f55f3
6 changed files with 77 additions and 0 deletions
@@ -0,0 +1,11 @@
package testing.jj;
public class JavaBase extends testing.kt.KotlinBase {
@Override
public String getSome() {
}
@Override
public void setSome(String someValue) {
}
}
@@ -0,0 +1,8 @@
package testing.kt
open class KotlinBase {
open var <caret>some = "Test"
}
// REF: (in testing.jj.JavaBase).getSome()
// REF: (in testing.jj.JavaBase).setSome(String)