6372c01e49
This is required to correctly resolve overloading in cases when we need to find most specific alternative in Java between int and Integer.
6 lines
90 B
Kotlin
Vendored
6 lines
90 B
Kotlin
Vendored
// FULL_JDK
|
|
import java.lang.Integer.getInteger
|
|
|
|
fun foo() {
|
|
getInteger("text", 239)
|
|
} |