Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/compilerRequiredAnnotationsOnConstructorProperty.kt
T
2023-05-27 08:47:13 +00:00

11 lines
376 B
Kotlin

// MEMBER_NAME_FILTER: i
annotation class Anno(val s: String)
class <caret>A @Deprecated("constructor") @Anno("constructor") constructor(
@param:[Deprecated("param") Anno("param")]
@field:[Deprecated("field") Anno("field")]
@property:Deprecated("property") @property:Anno("property")
val i: Int,
@Deprecated("parameter") @Anno("parameter")
b: String
)