Files
kotlin-fork/compiler/testData/ir/interpreter/helpers/StringNumberConversionsJVM.kt
T
Alexander Udalov cf425ffded Tests: fix stdlib declarations in IR interpreter test data
Fix some unresolved supertypes. This is necessary to be able to enable
IR fake override builder by default (KT-61514), because it traverses all
supertypes and asserts that they're classes, so that it can build fake
overrides for declarations from there. Without this change, for example
`IrFakeOverrideBuilder.buildFakeOverridesForClass` would crash.
2024-02-21 08:47:01 +00:00

5 lines
109 B
Kotlin
Vendored

package kotlin.text
@SinceKotlin("1.2")
public actual inline fun Long.toString(radix: Int): String = TODO()