mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
9 lines
296 B
Kotlin
Vendored
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}" |