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