Skip to content

Commit 0da9bf2

Browse files
committed
Rustfmt
1 parent b6b224f commit 0da9bf2

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

example/mini_core_hello_world.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,12 @@ fn main() {
322322
#[cfg(all(not(jit), not(all(windows, target_env = "gnu"))))]
323323
test_tls();
324324

325-
#[cfg(all(not(jit), not(no_unstable_features), target_arch = "x86_64", any(target_os = "linux", target_os = "darwin")))]
325+
#[cfg(all(
326+
not(jit),
327+
not(no_unstable_features),
328+
target_arch = "x86_64",
329+
any(target_os = "linux", target_os = "darwin")
330+
))]
326331
unsafe {
327332
global_asm_test();
328333
}
@@ -350,7 +355,12 @@ fn main() {
350355
let _a = f.0[0];
351356
}
352357

353-
#[cfg(all(not(jit), not(no_unstable_features), target_arch = "x86_64", any(target_os = "linux", target_os = "darwin")))]
358+
#[cfg(all(
359+
not(jit),
360+
not(no_unstable_features),
361+
target_arch = "x86_64",
362+
any(target_os = "linux", target_os = "darwin")
363+
))]
354364
extern "C" {
355365
fn global_asm_test();
356366
}

0 commit comments

Comments
 (0)