Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
reassignment
/
if.kt
blob: e7ea4c1fca6754803195a9dbd9bbcb2251bded08 [
file
]
// FIR_IDENTICAL
// DIAGNOSTICS: -UNUSED_VALUE
fun foo
(
f
:
Boolean
):
Int
{
val i
:
Int
if
(
f
)
{
i
=
1
}
<!
VAL_REASSIGNMENT
!>
i
<!>
=
3
return
i
}