Files
Alexey Belkov 6d0bd1ff1f [kotlin] Support Math.cbrt in "Java methods should be replaced with Kotlin analog" inspection
^KTIJ-25624 Fixed

GitOrigin-RevId: df011fead0c2493349788cba5af086158cdc8175
2023-05-23 13:09:15 +00:00

7 lines
76 B
Plaintext

import kotlin.math.cbrt
// WITH_STDLIB
fun test(x: Double) {
cbrt(x)
}