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

10 lines
116 B
Plaintext
Vendored

// PROBLEM: Condition is always 'true'
enum class Enum {
A, B, C
}
fun foo(x: Int) {}
fun bar() {
foo(1)
}