blob: 12a8fe0b2749f00683057dad5803e7c80c8dd24d [file]
// "Replace '@JvmField' with 'const'" "false"
// WITH_RUNTIME
// ERROR: JvmField has no effect on a private property
// ACTION: Convert to lazy property
// ACTION: Make internal
// ACTION: Make public
// ACTION: Remove explicit type specification
// ACTION: Add use-site target 'field'
fun getText() = ""
<caret>@JvmField private val text: String = getText()