Bless stderr files after rustfmt

This commit is contained in:
David Tolnay 2022-06-21 11:28:24 -07:00
parent b3a689e008
commit 7d40530c52
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
16 changed files with 67 additions and 67 deletions

View File

@ -1,7 +1,7 @@
error: Undefined Behavior: trying to reborrow <TAG> for Unique permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location error: Undefined Behavior: trying to reborrow <TAG> for Unique permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location
--> $DIR/return_invalid_mut_option.rs:LL:CC --> $DIR/return_invalid_mut_option.rs:LL:CC
| |
LL | Some(_x) => {}, LL | Some(_x) => {}
| ^^ | ^^
| | | |
| trying to reborrow <TAG> for Unique permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location | trying to reborrow <TAG> for Unique permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location

View File

@ -1,7 +1,7 @@
error: Undefined Behavior: trying to reborrow <TAG> for SharedReadOnly permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location error: Undefined Behavior: trying to reborrow <TAG> for SharedReadOnly permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location
--> $DIR/return_invalid_shr_option.rs:LL:CC --> $DIR/return_invalid_shr_option.rs:LL:CC
| |
LL | Some(_x) => {}, LL | Some(_x) => {}
| ^^ | ^^
| | | |
| trying to reborrow <TAG> for SharedReadOnly permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location | trying to reborrow <TAG> for SharedReadOnly permission at ALLOC[0x4], but that tag does not exist in the borrow stack for this location

View File

@ -1,7 +1,7 @@
error: Undefined Behavior: type validation failed: encountered a pointer, but expected plain (non-pointer) bytes error: Undefined Behavior: type validation failed: encountered a pointer, but expected plain (non-pointer) bytes
--> $DIR/transmute_fat1.rs:LL:CC --> $DIR/transmute_fat1.rs:LL:CC
| |
LL | std::mem::transmute::<&[u8], $ARRAY>(&[1u8]) LL | let bad = unsafe { std::mem::transmute::<&[u8], $ARRAY>(&[1u8]) };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a pointer, but expected plain (non-pointer) bytes | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a pointer, but expected plain (non-pointer) bytes
| |
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior

View File

@ -2,7 +2,7 @@ error: Undefined Behavior: accessing memory with alignment ALIGN, but alignment
--> $DIR/alignment.rs:LL:CC --> $DIR/alignment.rs:LL:CC
| |
LL | *(x_ptr as *mut u32) = 42; LL | *(x_ptr as *mut u32) = 42;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ accessing memory with alignment ALIGN, but alignment ALIGN is required | ^^^^^^^^^^^^^^^^^^^^^^^^^ accessing memory with alignment ALIGN, but alignment ALIGN is required
| |
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior = 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 = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information