about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2023-06-19 13:50:22 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2023-06-21 13:45:00 +0200
commit60ec8405eb03bb3da43e11a5415968d8d8852120 (patch)
tree9e71643017b8c727c41004a590337f0195a5834c /compiler/rustc_feature/src
parent6fc0273b5a57eb78cc00841181113fda3e509478 (diff)
downloadrust-60ec8405eb03bb3da43e11a5415968d8d8852120.tar.gz
rust-60ec8405eb03bb3da43e11a5415968d8d8852120.zip
Add `lazy_type_alias` feature gate
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index 4c53f9d8369..34c0e5009d3 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -440,6 +440,8 @@ declare_features! (
     (active, intra_doc_pointers, "1.51.0", Some(80896), None),
     // 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, "CURRENT_RUSTC_VERSION", 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.