]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/stacked_borrows/exposed_only_ro.stderr
Add 'src/tools/miri/' from commit '75dd959a3a40eb5b4574f8d2e23aa6efbeb33573'
[rust.git] / src / tools / miri / tests / fail / stacked_borrows / exposed_only_ro.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/exposed_only_ro.rs:LL:CC
3    |
4 LL |     unsafe { *ptr = 0 };
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/exposed_only_ro.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