Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/toString/nullableIntToString.kt
T

7 lines
98 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
val a: Int? = 5
val t: String = Integer.<caret>toString(a)
}