@@ -42,6 +42,10 @@ declare_features! (
4242 // feature-group-start: accepted features
4343 // -------------------------------------------------------------------------
4444
45+ // Note that the version indicates when it got *stabilized*.
46+ // When moving an unstable feature here, set the version number to
47+ // `CURRENT-RUSTC-VERSION` with `-` replaced by `_`.
48+
4549 /// Allows `#[target_feature(...)]` on aarch64 platforms
4650 ( accepted, aarch64_target_feature, "1.61.0" , Some ( 44839 ) ) ,
4751 /// Allows using the `efiapi` ABI.
@@ -310,6 +314,8 @@ declare_features! (
310314 ( accepted, raw_dylib, "1.71.0" , Some ( 58713 ) ) ,
311315 /// Allows keywords to be escaped for use as identifiers.
312316 ( accepted, raw_identifiers, "1.30.0" , Some ( 48589 ) ) ,
317+ /// Allows `&raw const $place_expr` and `&raw mut $place_expr` expressions.
318+ ( accepted, raw_ref_op, "CURRENT_RUSTC_VERSION" , Some ( 64490 ) ) ,
313319 /// Allows relaxing the coherence rules such that
314320 /// `impl<T> ForeignTrait<LocalType> for ForeignType<T>` is permitted.
315321 ( accepted, re_rebalance_coherence, "1.41.0" , Some ( 55437 ) ) ,
0 commit comments