Files
kotlin-fork/idea/testData/inspectionsLocal/constantConditionIf/constant.kt
T
2020-05-27 02:38:40 +09:00

7 lines
91 B
Kotlin
Vendored

// PROBLEM: none
const val s = "debug"
fun main() {
if (<caret>s == "debug") {
}
}