Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertySetterParameterWithAnnotations.kt
T

7 lines
117 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class AnnParam
@setparam:AnnParam
var p: Int = 0
class C(@setparam:AnnParam var p: Int)