Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
incDecToNull.kt
blob: 67924d7ffc92aabcf8dee220629dae1e9d618bf5 [
file
]
// FIR_IDENTICAL
class
IncDec
{
<!
INAPPLICABLE_OPERATOR_MODIFIER
!>
operator
<!>
fun inc
():
Unit
{}
}
fun foo
():
IncDec
{
var
x
=
IncDec
()
x
=
x
<!
INC_DEC_SHOULD_NOT_RETURN_UNIT
!>++<!>
x
<!
INC_DEC_SHOULD_NOT_RETURN_UNIT
!>++<!>
return
x
}