fbd992f8c7
#KT-23501 Fixed
9 lines
332 B
Kotlin
Vendored
9 lines
332 B
Kotlin
Vendored
// "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'
|
|
<caret>@JvmField private val number: Int? = 42 |