Files
kotlin-fork/nj2k/testData/newJ2k/field/volatileTransientAndStrictFp.kt
T
Dmitry Gridin bfd539d5d1 Formatter: fix line break between declarations with comment
#KT-12490 Fixed
#KT-35088 Fixed
2019-11-26 19:40:51 +07:00

12 lines
276 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
}