Files
kotlin-fork/idea/testData/inspectionsLocal/constantConditionIf/enumEntryLt.kt
T
2018-12-26 19:04:22 +03:00

10 lines
151 B
Kotlin
Vendored

// PROBLEM: Condition is always 'true'
enum class Enum {
A, B, C
}
fun foo(x: Int) {}
fun bar() {
foo(if (<caret>Enum.B < Enum.C) 1 else 2)
}