4 lines
96 B
Kotlin
Vendored
4 lines
96 B
Kotlin
Vendored
fun test() {
|
|
foo(false || !true) + foo(<caret>false || !true)
|
|
}
|
|
fun foo(v: Boolean): Int = 1 |