Files
kotlin-fork/js/js.translator/testData/multiModuleOrder/plain.kt
T
Zalim Bashorov 4849bddde1 KJS: write minification's test results to separate directory
It allows excluding this directory from indexing inside IDEA
and probably simplifies the main workflow.
2017-11-16 15:36:20 +03:00

14 lines
147 B
Kotlin
Vendored

// MODULE: lib
// FILE: lib.kt
package lib
fun bar() = "OK"
// MODULE: main(lib)
// FILE: main.kt
package foo
import lib.bar
fun box() = bar()