3fb04aceb9
Some duplicated checks deleted (UseSiteTargetChecker / JvmFieldApplicabilityChecker)
10 lines
265 B
Kotlin
Vendored
10 lines
265 B
Kotlin
Vendored
// ERROR: This annotation is not applicable to target 'member property with backing field'
|
|
internal class A {
|
|
@Deprecated("")
|
|
@Volatile var field1 = 0
|
|
|
|
@Transient var field2 = 1
|
|
|
|
// Should work even for bad modifiers
|
|
@Strictfp var field3 = 2.0
|
|
} |