FIR: Fix another inconsistency with FE1.0 in synthetic properties resolution

This commit is contained in:
Denis.Zharkov
2021-10-22 14:28:58 +03:00
parent fe1b4d61c2
commit 52c2908bb7
8 changed files with 67 additions and 119 deletions
@@ -0,0 +1,11 @@
// FIR_IDENTICAL
// SKIP_TXT
// FILE: A.java
public class A {
public String getS4ClassRepresentation() { return ""; }
}
// FILE: main.kt
fun foo(a: A) {
a.s4ClassRepresentation.length
}