]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/rc_as_ptr.stderr
Auto merge of #105416 - nnethercote:more-linting-tweaks, r=cjgillot
[rust.git] / src / tools / miri / tests / fail / rc_as_ptr.stderr
1 error: Undefined Behavior: pointer to ALLOC was dereferenced after this allocation got freed
2   --> $DIR/rc_as_ptr.rs:LL:CC
3    |
4 LL |     assert_eq!(42, **unsafe { &*Weak::as_ptr(&weak) });
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pointer to ALLOC was dereferenced after this allocation got freed
6    |
7    = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
9    = note: BACKTRACE:
10    = note: inside `main` at RUSTLIB/core/src/macros/mod.rs:LL:CC
11    = note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
14
15 error: aborting due to previous error
16