-
-
Notifications
You must be signed in to change notification settings - Fork 398
Closed
Labels
Description
Due to #1607 if you write something like var foo: usize = 0 and then you run autofix (my autofix runs on save) it will turn into const foo: usize = 0 and if you mutate it later by adding foo += 1 for example, you will get an error for attempting to assign to a constant.
corvid3leecannon