a341dc704f
^KT-62888 ^KT-62651
21 lines
370 B
Kotlin
Vendored
21 lines
370 B
Kotlin
Vendored
// IGNORE_FE10
|
|
// MODULE: lib
|
|
// MODULE_KIND: LibraryBinary
|
|
// FILE: Lib.kt
|
|
package one
|
|
|
|
class SimpleClass {
|
|
@Anno
|
|
@get:Anno
|
|
@set:Anno
|
|
@setparam:Anno
|
|
var memberVariableWithAnnotations: Long = 0L
|
|
}
|
|
|
|
annotation class Anno
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: usage.kt
|
|
fun usage(instance: one.SimpleClass) {
|
|
instance.memberV<caret>ariableWithAnnotations
|
|
} |