Files
kotlin-fork/idea/testData/quickfix/replaceJvmFieldWithConst/stringTemplateWithVal.kt
T
2018-03-23 15:26:21 +03:00

10 lines
335 B
Kotlin
Vendored

// "Replace '@JvmField' with 'const'" "false"
// WITH_RUNTIME
// ERROR: JvmField has no effect on a private property
// ACTION: Add 'const' modifier
// ACTION: Make internal
// ACTION: Make public
// ACTION: Specify type explicitly
// ACTION: Add use-site target 'field'
val three = 3
<caret>@JvmField private val text = "${2 + three}"