]> git.lizzy.rs Git - rust.git/blobdiff - tests/compile-fail/alloc/global_system_mixup.stderr
paper over platform differences
[rust.git] / tests / compile-fail / alloc / global_system_mixup.stderr
index 84d68be78cd165a776b66720ecd2f22ae5559874..a3b9009e30354151095766340947d7e352e0851a 100644 (file)
@@ -1,8 +1,8 @@
 error: Undefined Behavior: deallocating ALLOC, which is Rust heap memory, using PLATFORM heap deallocation operation
   --> RUSTLIB/std/src/sys/PLATFORM/alloc.rs:LL:CC
    |
-LL |         libc::free(ptr as *mut libc::c_void)
-   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ deallocating ALLOC, which is Rust heap memory, using PLATFORM heap deallocation operation
+LL |         FREE();
+   | ^ deallocating ALLOC, which is Rust heap memory, using PLATFORM heap deallocation operation
    |
    = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
@@ -13,7 +13,7 @@ note: inside `main` at $DIR/global_system_mixup.rs:LL:CC
   --> $DIR/global_system_mixup.rs:LL:CC
    |
 LL |     unsafe { System.deallocate(ptr, l); }
-   |              ^^^^^^^^^^^^^^^^^^^^^^^^^
+   | ^
 
 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace