a96b359a09
#KT-35994 Fixed
9 lines
178 B
Kotlin
Vendored
9 lines
178 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test(i: Int) {
|
|
val predicate: () -> Boolean =
|
|
if (i == 1) {
|
|
{ true }
|
|
} else {
|
|
<caret>{ false }
|
|
}
|
|
} |