FIR: Do not create incorrect synthetic property

This commit is contained in:
Denis.Zharkov
2021-10-26 11:42:00 +03:00
parent 52c2908bb7
commit 0bdea4f20a
7 changed files with 48 additions and 9 deletions
@@ -0,0 +1,14 @@
// FIR_IDENTICAL
// SKIP_TXT
// FILE: A.java
public class A {
public String get1() {
return "";
}
}
// FILE: main.kt
fun foo(a: A) {
a.<!UNRESOLVED_REFERENCE!>`1`<!>
a.get1()
}