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
I added the augmented_assignments feature to the file I was working on, but when testing, the compiler complained:
error: overloaded augmented assignments are not stable
help: add #![feature(augmented_assignments)] to the crate features to enable
I thought I had already done that, but it turns out it isn't enough to be in the source file using the feature. In retrospect (now that I know from help on IRC what the issue is), I'd expect the error to say:
error: overloaded augmented assignments are not stable
help: add #![feature(augmented_assignments)] to the crate root file (src/lib.rs) to enable
I added the augmented_assignments feature to the file I was working on, but when testing, the compiler complained:
I thought I had already done that, but it turns out it isn't enough to be in the source file using the feature. In retrospect (now that I know from help on IRC what the issue is), I'd expect the error to say:
or something to that effect.
The text was updated successfully, but these errors were encountered: