blob: 28b9172821ea898db8ae1cd6d76c906ad39441ad [file] [log] [blame]
// "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}"