Files
kotlin/idea/testData/quickfix/replaceJvmFieldWithConst/nullable.kt
2017-06-28 15:28:50 +03:00

7 lines
257 B
Kotlin
Vendored

// "Replace '@JvmField' with 'const'" "false"
// WITH_RUNTIME
// ERROR: JvmField has no effect on a private property
// ACTION: Make internal
// ACTION: Make public
// ACTION: Remove explicit type specification
<caret>@JvmField private val number: Int? = 42