You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#83 added support for += and friends (see #69), but value can not be on the left-hand side of +=.
The following test should get a validation error, as foo() is a value, not a place in memory
fnfoo(){1}asyncfnmain(){foo() += 2}
The text was updated successfully, but these errors were encountered:
(Note: I think it can get a validation error but continue to execute and compile just as it does not; I assume that it compiles to a temporary which gets modified.)
#83 added support for
+=
and friends (see #69), but value can not be on the left-hand side of+=
.The following test should get a validation error, as
foo()
is a value, not a place in memoryThe text was updated successfully, but these errors were encountered: