]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/stacked_borrows/unescaped_local.stderr
Auto merge of #104915 - weihanglo:update-cargo, r=ehuss
[rust.git] / src / tools / miri / tests / fail / stacked_borrows / unescaped_local.stderr
1 error: Undefined Behavior: attempting a write access using <wildcard> at ALLOC[0x0], but no exposed tags have suitable permission in the borrow stack for this location
2   --> $DIR/unescaped_local.rs:LL:CC
3    |
4 LL |         *raw = 13;
5    |         ^^^^^^^^^
6    |         |
7    |         attempting a write access using <wildcard> at ALLOC[0x0], but no exposed tags have suitable permission in the borrow stack for this location
8    |         this error occurs as part of an access at ALLOC[0x0..0x4]
9    |
10    = help: this indicates a potential bug in the program: it performed an invalid operation, but the Stacked Borrows rules it violated are still experimental
11    = help: see https://github.com/rust-lang/unsafe-code-guidelines/blob/master/wip/stacked-borrows.md for further information
12    = note: BACKTRACE:
13    = note: inside `main` at $DIR/unescaped_local.rs:LL:CC
14
15 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
16
17 error: aborting due to previous error
18