mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
Load module annotations in IDE
#KT-22759 Fixed
This commit is contained in:
14
idea/testData/multiModuleHighlighting/jsExperimentalLibrary/usage/usage.kt
vendored
Normal file
14
idea/testData/multiModuleHighlighting/jsExperimentalLibrary/usage/usage.kt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user