]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_feature/src/removed.rs
Rollup merge of #99712 - davidtwco:translation-migrate-passes-2, r=compiler-errors
[rust.git] / compiler / rustc_feature / src / removed.rs
index 54626caaf53ea43e6ee7dde15639984d7cdb4ef2..2ddaf9201098ec8069e68e3aeb22d7936f21b36f 100644 (file)
@@ -180,6 +180,9 @@ macro_rules! declare_features {
     /// Allows using items which are missing stability attributes
     (removed, unmarked_api, "1.0.0", None, None, None),
     (removed, unsafe_no_drop_flag, "1.0.0", None, None, None),
+    /// Allows `union` fields that don't implement `Copy` as long as they don't have any drop glue.
+    (removed, untagged_unions, "1.13.0", Some(55149), None,
+     Some("unions with `Copy` and `ManuallyDrop` fields are stable; there is no intent to stabilize more")),
     /// Allows `#[unwind(..)]`.
     ///
     /// Permits specifying whether a function should permit unwinding or abort on unwind.