]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/alloc/reallocate-bad-size.stderr
Rollup merge of #102187 - b-naber:inline-const-source-info, r=eholk
[rust.git] / src / tools / miri / tests / fail / alloc / reallocate-bad-size.stderr
1 error: Undefined Behavior: incorrect layout on deallocation: ALLOC has size 1 and alignment ALIGN, but gave size 2 and alignment ALIGN
2   --> RUSTLIB/alloc/src/alloc.rs:LL:CC
3    |
4 LL |     unsafe { __rust_realloc(ptr, layout.size(), layout.align(), new_size) }
5    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC has size 1 and alignment ALIGN, but gave size 2 and alignment ALIGN
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 `std::alloc::realloc` at RUSTLIB/alloc/src/alloc.rs:LL:CC
11 note: inside `main` at $DIR/reallocate-bad-size.rs:LL:CC
12   --> $DIR/reallocate-bad-size.rs:LL:CC
13    |
14 LL |         let _y = realloc(x, Layout::from_size_align_unchecked(2, 1), 1);
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