blob: 5d34707e2194dd93d1951edc513f0ed33f383d88 [file] [log] [blame]
import lib.*
fun run() {
val test1 = 42.toString(10)
val test2 = J(42).toString(10)
if (test1 != "42") throw AssertionError(test1)
if (test2 != "J42") throw AssertionError(test2)
}