Skip to content

Commit 0265e4e

Browse files
committed
add tracking issue
1 parent f0d2e78 commit 0265e4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/ptr/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ fnptr_impls_args! { A, B, C, D, E, F, G, H, I, J, K, L }
14261426
/// let raw_f2 = ptr::raw_const!(packed.f2);
14271427
/// assert_eq!(unsafe { raw_f2.read_unaligned() }, 2);
14281428
/// ```
1429-
#[unstable(feature = "raw_ref_macros", issue = "none")]
1429+
#[unstable(feature = "raw_ref_macros", issue = "73394")]
14301430
#[rustc_macro_transparency = "semitransparent"]
14311431
#[allow_internal_unstable(raw_ref_op)]
14321432
pub macro raw_const($e:expr) {
@@ -1460,7 +1460,7 @@ pub macro raw_const($e:expr) {
14601460
/// unsafe { raw_f2.write_unaligned(42); }
14611461
/// assert_eq!({packed.f2}, 42); // `{...}` forces copying the field instead of creating a reference.
14621462
/// ```
1463-
#[unstable(feature = "raw_ref_macros", issue = "none")]
1463+
#[unstable(feature = "raw_ref_macros", issue = "73394")]
14641464
#[rustc_macro_transparency = "semitransparent"]
14651465
#[allow_internal_unstable(raw_ref_op)]
14661466
pub macro raw_mut($e:expr) {

0 commit comments

Comments
 (0)