Files
Alexander Podkhalyuzin 6372c01e49 Added missing specificity comparator to FIR
This is required to correctly resolve overloading in cases when we
need to find most specific alternative in Java between int and Integer.
2020-04-28 17:34:42 +03:00

6 lines
90 B
Kotlin
Vendored

// FULL_JDK
import java.lang.Integer.getInteger
fun foo() {
getInteger("text", 239)
}