Files
kotlin-fork/idea/testData/quickfix/replaceJvmFieldWithConst/getter.kt
T
2018-10-11 17:20:13 +03:00

8 lines
331 B
Kotlin
Vendored

// "Replace '@JvmField' with 'const'" "false"
// WITH_RUNTIME
// ERROR: This annotation is not applicable to target 'top level property without backing field or delegate'
// ACTION: Make internal
// ACTION: Remove explicit type specification
// ACTION: Add use-site target 'property'
<caret>@JvmField val number: Int
get() = 42