Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
splitIf
/
nestedIf.kt.after
blob: 0ced6156313c837208ab303299e2c4909db01ccc [
file
] [
log
] [
blame
]
fun
<
T
>
doSomething
(
a
:
T
)
{}
fun foo
()
{
val a
=
true
val b
=
false
val c
=
true
if
(
a
)
{
if
(
b
)
{
if
(
c
)
{
doSomething
(
"test"
)
}
}
}
}