diff options
| author | Ralf Jung <post@ralfj.de> | 2020-06-16 09:25:29 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2020-06-16 09:25:29 +0200 |
| commit | 0265e4e61bcd51b11f0b13b712245feb9c59ab50 (patch) | |
| tree | 28e8501542b32cd498d99dfd96534d16b06b2444 /src | |
| parent | f0d2e78d39d0efdb431af0b59c498d532d8146e2 (diff) | |
| download | rust-0265e4e61bcd51b11f0b13b712245feb9c59ab50.tar.gz rust-0265e4e61bcd51b11f0b13b712245feb9c59ab50.zip | |
add tracking issue
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/ptr/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/ptr/mod.rs b/src/libcore/ptr/mod.rs index 199f08c3d50..30c0f9a3757 100644 --- a/src/libcore/ptr/mod.rs +++ b/src/libcore/ptr/mod.rs @@ -1426,7 +1426,7 @@ fnptr_impls_args! { A, B, C, D, E, F, G, H, I, J, K, L } /// let raw_f2 = ptr::raw_const!(packed.f2); /// assert_eq!(unsafe { raw_f2.read_unaligned() }, 2); /// ``` -#[unstable(feature = "raw_ref_macros", issue = "none")] +#[unstable(feature = "raw_ref_macros", issue = "73394")] #[rustc_macro_transparency = "semitransparent"] #[allow_internal_unstable(raw_ref_op)] pub macro raw_const($e:expr) { @@ -1460,7 +1460,7 @@ pub macro raw_const($e:expr) { /// unsafe { raw_f2.write_unaligned(42); } /// assert_eq!({packed.f2}, 42); // `{...}` forces copying the field instead of creating a reference. /// ``` -#[unstable(feature = "raw_ref_macros", issue = "none")] +#[unstable(feature = "raw_ref_macros", issue = "73394")] #[rustc_macro_transparency = "semitransparent"] #[allow_internal_unstable(raw_ref_op)] pub macro raw_mut($e:expr) { |
