Files
kotlin-fork/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt.after
T
Ilya Gorbunov 034623f82a Fix top level import quick fix test for JS
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.
2020-06-25 18:36:04 +03:00

10 lines
92 B
Plaintext
Vendored

// "Import" "true"
// JS
package some
import kotlin.math.cos
fun testFun() {
cos(0.0)
}