Format late arrivals with rustfmt
This commit is contained in:
parent
2cbc461389
commit
a23eb46b5b
@ -1,6 +1,7 @@
|
||||
#![feature(c_unwind)]
|
||||
|
||||
extern "C" fn panic_abort() { //~ ERROR: the program aborted
|
||||
extern "C" fn panic_abort() {
|
||||
//~ ERROR: the program aborted
|
||||
panic!()
|
||||
}
|
||||
|
||||
|
@ -10,7 +10,7 @@ extern crate libc;
|
||||
use std::{mem, ptr};
|
||||
|
||||
extern "C-unwind" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
|
||||
//~^ ERROR unwinding past the topmost frame of the stack
|
||||
//~^ ERROR unwinding past the topmost frame of the stack
|
||||
panic!()
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
// We are making scheduler assumptions here.
|
||||
// compile-flags: -Zmiri-strict-provenance -Zmiri-preemption-rate=0
|
||||
|
||||
use std::sync::{Condvar, Mutex, Arc};
|
||||
use std::sync::{Arc, Condvar, Mutex};
|
||||
use std::thread;
|
||||
|
||||
fn check_conditional_variables_notify_all() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user