2a8b655294
Related to KT-59171
10 lines
210 B
Kotlin
Vendored
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())
|
|
}
|