Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cfg
/
expressions
/
incdec.kt
blob: 55a90b5c61ac859a944e5ba3c7037683be990234 [
file
]
fun bar
(
n
:
Int
)
{
}
fun foo
()
{
var
a
=
1
bar
(
a
++)
bar
(
a
--)
bar
(++
a
)
bar
(--
a
)
}