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

7 lines
92 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
var number = 5
val numberString = number.toString(2)
}