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

7 lines
84 B
Plaintext
Vendored

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