Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
issues
/
issue-26093.rs
blob: c838515caf997e6f6a8ba6ad2a06ea124256354a [
file
]
macro_rules
!
not_a_place
{
(
$thing
:
expr
)
=>
{
$thing
=
42
;
//~^ ERROR invalid left-hand side of assignment
$thing
+=
42
;
//~^ ERROR invalid left-hand side of assignment
}
}
fn
main
()
{
not_a_place
!(
99
);
}