// Can't be tested in JVM because frontend doesn't allow such code // TARGET_BACKEND: JS_IR // TARGET_BACKEND: NATIVE // WITH_STDLIB package java.lang object Math { const val E: Double = kotlin.math.E const val PI: Double = kotlin.math.PI const val OK: String = "OK" } const val usageE = Math.E const val usagePI = Math.PI fun box(): String { return Math.OK }