Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/experimental/experimentalOnWholeModule.kt
T
2018-02-08 17:07:22 +01:00

24 lines
297 B
Kotlin
Vendored

// !API_VERSION: 1.3
// !EXPERIMENTAL: api.ExperimentalAPI
// MODULE: api
// FILE: api.kt
package api
@Experimental
annotation class ExperimentalAPI
@ExperimentalAPI
fun function(): String = ""
// MODULE: usage(api)
// FILE: usage.kt
package usage
import api.*
fun use() {
function()
}