]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/data_race/stack_pop_race.stderr
Rollup merge of #102187 - b-naber:inline-const-source-info, r=eholk
[rust.git] / src / tools / miri / tests / fail / data_race / stack_pop_race.stderr
1 error: Undefined Behavior: Data race detected between Deallocate on thread `main` and Read on thread `<unnamed>` at ALLOC
2   --> $DIR/stack_pop_race.rs:LL:CC
3    |
4 LL | }
5    |  ^ Data race detected between Deallocate on thread `main` and Read 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 `race` at $DIR/stack_pop_race.rs:LL:CC
11 note: inside `main` at $DIR/stack_pop_race.rs:LL:CC
12   --> $DIR/stack_pop_race.rs:LL:CC
13    |
14 LL |     race(0);
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