Files
kotlin-fork/nj2k/testData/newJ2k/constructors/fieldsInitializedFromParamsAnnotations.kt
T
2019-05-31 00:25:52 +03:00

4 lines
443 B
Kotlin
Vendored

// ERROR: This annotation is not applicable to target 'value parameter' and use site target '@field'
// ERROR: This annotation is not applicable to target 'value parameter' and use site target '@param'
// ERROR: This annotation is not applicable to target 'value parameter' and use site target '@param'
internal class C(@field:Deprecated("") private val p1: Int, @param:Deprecated("") private val myP2: Int, @param:Deprecated("") var p3: Int)