about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/active.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-07-30 00:41:35 +0000
committerbors <bors@rust-lang.org>2023-07-30 00:41:35 +0000
commitfb53384c94b87adebceb6048865c9fe305e71b92 (patch)
tree2c209d5f667072db99e6df2ce23678e7ee958f3c /compiler/rustc_feature/src/active.rs
parentb969b830aa8cac0ded5cced9e4a47e124183a6ee (diff)
parentd4926b13aac4e61e9b46e32bcf0436589e589c07 (diff)
downloadrust-fb53384c94b87adebceb6048865c9fe305e71b92.tar.gz
rust-fb53384c94b87adebceb6048865c9fe305e71b92.zip
Auto merge of #114226 - matthiaskrgr:rollup-wxdudsm, r=matthiaskrgr
Rollup of 3 pull requests

Successful merges:

 - #114129 (Rustdoc small cleanups)
 - #114152 ([rustc][data_structures] Simplify binary_search_slice.)
 - #114222 (Mark `lazy_type_alias` as incomplete)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_feature/src/active.rs')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index 22380a52104..bbc3d291e20 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -449,7 +449,7 @@ declare_features! (
     // Allows setting the threshold for the `large_assignments` lint.
     (active, large_assignments, "1.52.0", Some(83518), None),
     /// Allow to have type alias types for inter-crate use.
-    (active, lazy_type_alias, "1.72.0", Some(112792), None),
+    (incomplete, lazy_type_alias, "1.72.0", Some(112792), None),
     /// Allows `if/while p && let q = r && ...` chains.
     (active, let_chains, "1.37.0", Some(53667), None),
     /// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.