Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/javaQualifier.kt
T
2021-09-14 19:13:41 +03:00

18 lines
446 B
Kotlin
Vendored

// FILE: W.java
public class W {
public static class E {
public static String w = "";
}
public static String E() {return "";}
public static final String E = "";
}
// FILE: main.kt
fun main() {
W.E().length // ambiguity in old FE, resolved to static method in FIR
W.E.<!UNRESOLVED_REFERENCE!>length<!> // resolved with error to the class W.E in FIR and old FE
W.E.w // resolved to static field W.e.W in FE
}