blob: dfc19ca9b65aa69f41792d405c930f98d6a39967 [file]
// "Replace '@JvmField' with 'const'" "false"
// WITH_RUNTIME
// ERROR: JvmField has no effect on a private property
// ACTION: Convert to lazy 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}"