// "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 @JvmField private val text = "${2 + three}"