Files
kotlin-fork/analysis/analysis-api/testData/symbols/symbolByReference/libraryConstructorVariableWithAnnotations.kt
T
2024-01-03 13:39:41 +00:00

21 lines
375 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 constructorVariableWithAnnotations: Long,
)
annotation class Anno
// MODULE: main(lib)
// FILE: usage.kt
fun usage(instance: one.SimpleClass) {
instance.constru<caret>ctorVariableWithAnnotations
}