]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/stacked_borrows/retag_data_race_write.stderr
Auto merge of #104535 - mikebenfield:discr-fix, r=pnkfelix
[rust.git] / src / tools / miri / tests / fail / stacked_borrows / retag_data_race_write.stderr
1 error: Undefined Behavior: Data race detected between Write on thread `<unnamed>` and Write on thread `<unnamed>` at ALLOC
2   --> $DIR/retag_data_race_write.rs:LL:CC
3    |
4 LL |         *p = 5;
5    |         ^^^^^^ Data race detected between Write on thread `<unnamed>` and Write on thread `<unnamed>` at ALLOC
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 `thread_2` at $DIR/retag_data_race_write.rs:LL:CC
11 note: inside closure at $DIR/retag_data_race_write.rs:LL:CC
12   --> $DIR/retag_data_race_write.rs:LL:CC
13    |
14 LL |     let t2 = std::thread::spawn(move || thread_2(p));
15    |                                         ^^^^^^^^^^^
16
17 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
18
19 error: aborting due to previous error
20