-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Invalid help suggestion #56714
Labels
Comments
Can you provide a minimal repro as a regression test? |
(they should also be called raw pointers, not native, unless that terminology has changed recently) |
struct Session {
opts: u8
}
fn main() {
let sess: &Session = &Session { opts: 0 };
(sess as *const Session as *mut Session).opts = 42;
} Edit: smaller repro |
This was referenced Dec 18, 2018
Centril
added a commit
to Centril/rust
that referenced
this issue
Dec 23, 2018
…zackmdavis Correct strings for raw pointer deref and array access suggestions Fixes rust-lang#56714. Fixes rust-lang#56963. r? @zackmdavis
Centril
added a commit
to Centril/rust
that referenced
this issue
Dec 23, 2018
…zackmdavis Correct strings for raw pointer deref and array access suggestions Fixes rust-lang#56714. Fixes rust-lang#56963. r? @zackmdavis
Centril
added a commit
to Centril/rust
that referenced
this issue
Dec 23, 2018
…zackmdavis Correct strings for raw pointer deref and array access suggestions Fixes rust-lang#56714. Fixes rust-lang#56963. r? @zackmdavis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
The text was updated successfully, but these errors were encountered: