Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disallow modifications of strings #9750

Merged
merged 1 commit into from
Oct 9, 2013
Merged

Conversation

alexcrichton
Copy link
Member

This behavior was decided to get out-right forbidden by the compiler

Closes #8891

@alexcrichton
Copy link
Member Author

Sorry the diff is a bit messy, but it was mostly just un-indenting a lot of code which was unnecessarily indented. I can separate the two changes out for review if desired.

@brson
Copy link
Contributor

brson commented Oct 9, 2013

In a discussion we decided that these operations should simply be disallowed.

@alexcrichton
Copy link
Member Author

I couldn't really find a better spot than the effect checker to put this validation, but it's pretty easy to move around.

This disallows `str[0] = foo` along with `foo = &mut str[i]` to prevent strings
from being modified at runtime (except possibly through the `str` module)

Closes rust-lang#8891
bors added a commit that referenced this pull request Oct 9, 2013
This behavior was decided to get out-right forbidden by the compiler


Closes #8891
@bors bors closed this Oct 9, 2013
@bors bors merged commit a69e4a5 into rust-lang:master Oct 9, 2013
SimonSapin added a commit to SimonSapin/rust that referenced this pull request Jul 13, 2015
... matching the existing Index impls.
There is no reason not to if String implement DerefMut.

The code removed in `src/librustc/middle/effect.rs` was added in rust-lang#9750
to prevent things like `s[0] = 0x80` where `s: String`,
but I belive became unnecessary when the Index(Mut) traits were introduced.
flip1995 pushed a commit to flip1995/rust that referenced this pull request Dec 1, 2022
Fix [`unnecessary_lazy_eval`] when type has significant drop

fix for rust-lang/rust-clippy#9427 (comment)

However current implementation gives too many false positive, rending the lint almost useless.

I don't know what's the best way to check if a type has a "significant" drop (in the common meaning, not the internal rustc one, for example Option<(u8, u8)> should not be considered significant)

changelog: Fix [`unnecessary_lazy_eval`] when type has significant drop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Index-assign in str should be unsafe
3 participants