Assign mutable semantic token modifier to assignment operators

This commit is contained in:
Lukas Wirth 2021-07-13 18:32:02 +02:00
parent b3337c26db
commit d1256a3709
3 changed files with 10 additions and 7 deletions

View file

@ -168,6 +168,7 @@ fn main() {
noop!(noop!(1));
let mut x = 42;
x += 1;
let y = &mut x;
let z = &y;