Explicit conversion from `Int` needed since 1.9
Reports expressions that will be of type Int
, thus causing compilation errors in Kotlin 1.9 and later.
Example:
fun takeByte(x: Byte) {}
fun foo() {
takeByte(1 + 1) // will be resolved to Int in 1.9
}
After the quick-fix is applied:
fun takeByte(x: Byte) {}
fun foo() {
takeByte((1 + 1).toByte()) // will be resolved to Int in 1.9
}
Inspection is available for Kotlin language level starting from 1.7.
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Kotlin, @snapshot@ |
Last modified: 13 July 2023