13 lines
277 B
Kotlin
Vendored
13 lines
277 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
|
|
} |