034623f82a
There's no longer any JS-only top level function that is not imported by default, so I used a common non-imported top level function.
10 lines
92 B
Plaintext
Vendored
10 lines
92 B
Plaintext
Vendored
// "Import" "true"
|
|
// JS
|
|
package some
|
|
|
|
import kotlin.math.cos
|
|
|
|
fun testFun() {
|
|
cos(0.0)
|
|
}
|