Files
kotlin-fork/compiler/testData/cli/jvm/useDeclarationThatWasExperimentalWithoutMarker2.kt
T
Mikhail Glukhikh 2a8b655294 Update tests after switching to LV 2.0
Related to KT-59171
2023-09-19 15:46:27 +00:00

10 lines
210 B
Kotlin
Vendored

//This test is extracted from useDeclarationThatWasExperimentalWithoutMarker.kt to check warnings in output
import kotlin.math.*
fun test(p: ULong) {
val z: ULong = p
z.inv()
cbrt(z.toDouble())
}