301b3aad06
#KT-28803 Fixed
6 lines
129 B
Kotlin
Vendored
6 lines
129 B
Kotlin
Vendored
// PROBLEM: Condition is always 'true'
|
|
fun foo(x: Int) {}
|
|
|
|
fun bar() {
|
|
foo(if (<caret>test.Enum.A == test.Enum.A) 1 else 2)
|
|
} |