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 a0a20dd commit a06cd16Copy full SHA for a06cd16
compiler/rustc_interface/src/tests.rs
@@ -815,7 +815,10 @@ fn test_unstable_options_tracking_hash() {
815
tracked!(packed_bundled_libs, true);
816
tracked!(panic_abort_tests, true);
817
tracked!(panic_in_drop, PanicStrategy::Abort);
818
- tracked!(patchable_function_entry, PatchableFunctionEntry::from_total_and_prefix_nops(10, 5).expect("total >= prefix"));
+ tracked!(
819
+ patchable_function_entry,
820
+ PatchableFunctionEntry::from_total_and_prefix_nops(10, 5).expect("total >= prefix")
821
+ );
822
tracked!(plt, Some(true));
823
tracked!(polonius, Polonius::Legacy);
824
tracked!(precise_enum_drop_elaboration, false);
0 commit comments