[FIR] Fix resolve for java synthetic properties in KDoc

^KT-62880 fixed
This commit is contained in:
Egor Kulikov
2024-02-07 13:39:16 +01:00
committed by Space Team
parent 7c8c65d291
commit 36b89f5e84
16 changed files with 250 additions and 18 deletions
@@ -0,0 +1,13 @@
// FILE: main.kt
/**
* [Storage.<caret_1>value]
* [Storage.<caret_2>getValue]
*/
fun usage() {
}
// FILE: Storage.java
class Storage {
String getValue() { return null; }
}