4b99d85322
Implement an intrinsic method for boolean.and operation, and replace ANDAND condition with a call to such intrinsic method.
10 lines
102 B
Kotlin
Vendored
10 lines
102 B
Kotlin
Vendored
fun cond() = false
|
|
|
|
fun foo() {
|
|
if (cond())
|
|
cond()
|
|
else
|
|
false
|
|
}
|
|
|
|
// 1 4 5 7 8 |