]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/alloc/deallocate-bad-alignment.stderr
Add 'src/tools/miri/' from commit '75dd959a3a40eb5b4574f8d2e23aa6efbeb33573'
[rust.git] / src / tools / miri / tests / fail / alloc / deallocate-bad-alignment.stderr
1 error: Undefined Behavior: incorrect layout on deallocation: ALLOC has size 1 and alignment ALIGN, but gave size 1 and alignment ALIGN
2   --> RUSTLIB/alloc/src/alloc.rs:LL:CC
3    |
4 LL |     unsafe { __rust_dealloc(ptr, layout.size(), layout.align()) }
5    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC has size 1 and alignment ALIGN, but gave size 1 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::dealloc` at RUSTLIB/alloc/src/alloc.rs:LL:CC
11 note: inside `main` at $DIR/deallocate-bad-alignment.rs:LL:CC
12   --> $DIR/deallocate-bad-alignment.rs:LL:CC
13    |
14 LL |         dealloc(x, Layout::from_size_align_unchecked(1, 2));
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