Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
splitIf
/
orAnd.kt
blob: 4a09638be7095e79a56533dcb24957f7ab519737 [
file
] [
log
] [
blame
]
fun
<
T
>
doSomething
(
a
:
T
)
{}
fun foo
()
{
val a
=
true
val b
=
false
val c
=
true
if
(
a
<caret>
||
b
&&
c
)
{
doSomething
(
"test"
)
}
}