about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-11-16 18:33:36 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-11-20 14:10:27 +1100
commit9e6ee728a268ad700336d9b2933e152849c22a99 (patch)
tree937981b77356d65bb1515fc6c1744e8024970589
parenta3bd5a097454eabc2e58dfc34b7e7a36c894b842 (diff)
downloadrust-9e6ee728a268ad700336d9b2933e152849c22a99.tar.gz
rust-9e6ee728a268ad700336d9b2933e152849c22a99.zip
Alphabetize features.
-rw-r--r--compiler/rustc_ty_utils/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_ty_utils/src/lib.rs b/compiler/rustc_ty_utils/src/lib.rs
index 871e431ea64..8321732b766 100644
--- a/compiler/rustc_ty_utils/src/lib.rs
+++ b/compiler/rustc_ty_utils/src/lib.rs
@@ -10,11 +10,11 @@
 #![allow(internal_features)]
 #![feature(assert_matches)]
 #![feature(associated_type_defaults)]
+#![feature(box_patterns)]
+#![feature(if_let_guard)]
 #![feature(iterator_try_collect)]
 #![feature(let_chains)]
-#![feature(if_let_guard)]
 #![feature(never_type)]
-#![feature(box_patterns)]
 #![recursion_limit = "256"]
 #![deny(rustc::untranslatable_diagnostic)]
 #![deny(rustc::diagnostic_outside_of_impl)]