4 lines
443 B
Kotlin
Vendored
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) |