Files
kotlin/idea/testData/quickfix/replaceJvmFieldWithConst/stringTemplateWithVal.kt
2017-06-28 15:28:50 +03:00

9 lines
296 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
val three = 3
<caret>@JvmField private val text = "${2 + three}"