-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Can cast an unusable value to a raw pointer #20791
Comments
You assumption is correct, the reference explicitly defines this as |
Nice catch! Nominating. |
Weird. Perhaps an oversight in the EUV? |
cc me |
Still compiles successfully (I made a minor rustup edit). Closed by mistake? rustc 1.0.0-dev (8160fc4 2015-01-22 16:50:17 +0000) |
Um, it appears I got confused -- I added a run-pass test ;) |
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 9, 2015
Modify the ExprUseVisitor to walk each part of an AutoRef, and in particular to treat an AutoUnsize as as kind of \"instantaneous\" borrow of the value being unsized. This prevents us from feeding uninitialized data. This caused a problem for the eager reborrow of comparison traits, because that wound up introducing a \"double AutoRef\", which was not being thoroughly checked before but turned out not to type check. Fortunately, we can just remove that \"eager reborrow\" as it is no longer needed now that `PartialEq` doesn't force both LHS and RHS to have the same type (and even if we did have this problem, the better way would be to lean on introducing a common supertype). Fixes rust-lang#20791. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 9, 2015
Modify the ExprUseVisitor to walk each part of an AutoRef, and in particular to treat an AutoUnsize as as kind of \"instantaneous\" borrow of the value being unsized. This prevents us from feeding uninitialized data. This caused a problem for the eager reborrow of comparison traits, because that wound up introducing a \"double AutoRef\", which was not being thoroughly checked before but turned out not to type check. Fortunately, we can just remove that \"eager reborrow\" as it is no longer needed now that `PartialEq` doesn't force both LHS and RHS to have the same type (and even if we did have this problem, the better way would be to lean on introducing a common supertype). Fixes rust-lang#20791. r? @nrc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is accepted and prints
0x0
everywhere I've tested (rustc 0.13.0-dev (496dc4e) and the playpen). A similar access is allowed to moved values and mutably borrowed values.I assume I should not be able to access uninitialized values without some unsafe code, although I am new to the language and might be missing something.
The text was updated successfully, but these errors were encountered: