Files
kotlin-fork/idea/testData/inspectionsLocal/mayBeConstant/cascadeConst.kt
T
2017-12-15 13:05:50 +03:00

9 lines
116 B
Kotlin
Vendored

// WITH_RUNTIME
const val y = 0
class Your {
companion object {
@JvmField val <caret>z = y + 3
}
}