Files
kotlin/compiler/testData/experimental/jsExperimentalModule/usage.kt
Alexander Udalov 890374a42a Load module annotations for JVM and JS modules in compiler
#KT-22759 In Progress
2018-02-08 17:08:33 +01:00

13 lines
111 B
Kotlin
Vendored

package usage
import lib.*
fun fail(foo: Foo) {
bar()
}
@ExperimentalAPI
fun ok(foo: Foo) {
bar()
}