dokka icon indicating copy to clipboard operation
dokka copied to clipboard

[K1] Resolved references to synthetic java properties

Open vmishenev opened this issue 10 months ago • 0 comments

After KT-62880, K2 (Dokka and IDE) can resolve references to synthetic java properties, but K1 - can not.

public class Storage {
    public String getProp() {
        return null;
    }
}
/**
 * prop [Storage.prop] is resolved in K2, but in K1 - not
 */
fun usage() {}

Note! The name of the unit test KDoc link should not lead to java synthetic properties is incorrect, see the fix

vmishenev avatar Apr 25 '24 21:04 vmishenev