Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit a23eb46

Browse files
committed
Format late arrivals with rustfmt
1 parent 2cbc461 commit a23eb46

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tests/fail/abort-terminator.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#![feature(c_unwind)]
22

3-
extern "C" fn panic_abort() { //~ ERROR: the program aborted
3+
extern "C" fn panic_abort() {
4+
//~ ERROR: the program aborted
45
panic!()
56
}
67

tests/fail/concurrency/unwind_top_of_stack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ extern crate libc;
1010
use std::{mem, ptr};
1111

1212
extern "C-unwind" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
13-
//~^ ERROR unwinding past the topmost frame of the stack
13+
//~^ ERROR unwinding past the topmost frame of the stack
1414
panic!()
1515
}
1616

tests/pass/concurrency/sync_nopreempt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// We are making scheduler assumptions here.
33
// compile-flags: -Zmiri-strict-provenance -Zmiri-preemption-rate=0
44

5-
use std::sync::{Condvar, Mutex, Arc};
5+
use std::sync::{Arc, Condvar, Mutex};
66
use std::thread;
77

88
fn check_conditional_variables_notify_all() {

0 commit comments

Comments
 (0)