mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
^KTIJ-25624 Fixed GitOrigin-RevId: df011fead0c2493349788cba5af086158cdc8175
7 lines
76 B
Plaintext
7 lines
76 B
Plaintext
import kotlin.math.cbrt
|
|
|
|
// WITH_STDLIB
|
|
fun test(x: Double) {
|
|
cbrt(x)
|
|
}
|