Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
splitIf
/
twoOperatorsFirst.kt
blob: aa6028358cae8e11438b98e2b042fe8177882f16 [
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"
)
}
}