Files
kotlin/idea/testData/multiModuleHighlighting/jvmExperimentalLibrary/usage/usage.kt
Alexander Udalov 21e2a3c0b4 Load module annotations in IDE
#KT-22759 Fixed
2018-02-08 17:08:33 +01:00

15 lines
196 B
Kotlin
Vendored

package usage
import lib.*
fun fail(foo: <error>Foo</error>): <error>Foo</error> {
<error>bar</error>()
return foo
}
@ExperimentalAPI
fun ok(foo: Foo): Foo {
bar()
return foo
}