Files
kotlin-fork/idea/testData/quickfix/autoImports/libraryTopLevelFunctionImportJsRuntime.kt
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

8 lines
75 B
Kotlin
Vendored

// "Import" "true"
// JS
package some
fun testFun() {
<caret>cos(0.0)
}