We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be32fe2 commit 394d733Copy full SHA for 394d733
bindgen/features.rs
@@ -514,9 +514,9 @@ mod test {
514
let features =
515
RustFeatures::new_with_latest_edition(RustTarget::Stable_1_71);
516
assert!(
517
- features.c_unwind_abi
518
- && features.abi_efiapi
519
- && !features.thiscall_abi
+ features.c_unwind_abi &&
+ features.abi_efiapi &&
+ !features.thiscall_abi
520
);
521
522
let features = RustFeatures::new(
@@ -532,9 +532,9 @@ mod test {
532
let f_nightly =
533
RustFeatures::new_with_latest_edition(RustTarget::Nightly);
534
535
- f_nightly.vectorcall_abi
536
- && f_nightly.ptr_metadata
537
- && f_nightly.layout_for_ptr
+ f_nightly.vectorcall_abi &&
+ f_nightly.ptr_metadata &&
+ f_nightly.layout_for_ptr
538
539
}
540
0 commit comments