Auto merge of #68929 - matprec:consistent-issue-references, r=Dylan-DPC
Make issue references consistent Fixes https://github.com/rust-lang/rust/issues/62976 cc https://github.com/rust-lang/rust/pull/63008 r? @varkor because you reviewed the original pr
This commit is contained in:
commit
dc4242d905
266 changed files with 778 additions and 735 deletions
|
|
@ -4,7 +4,7 @@ error[E0658]: references in constants may only refer to immutable values
|
|||
LL | const CR: &'static mut i32 = &mut C;
|
||||
| ^^^^^^ constants require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error[E0019]: static contains unimplemented expression type
|
||||
|
|
@ -19,7 +19,7 @@ error[E0658]: references in statics may only refer to immutable values
|
|||
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
||||
| ^^^^^^ statics require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error[E0596]: cannot borrow immutable static item `X` as mutable
|
||||
|
|
@ -34,7 +34,7 @@ error[E0658]: references in statics may only refer to immutable values
|
|||
LL | static CONST_REF: &'static mut i32 = &mut C;
|
||||
| ^^^^^^ statics require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error[E0658]: references in statics may only refer to immutable values
|
||||
|
|
@ -43,7 +43,7 @@ error[E0658]: references in statics may only refer to immutable values
|
|||
LL | static STATIC_MUT_REF: &'static mut i32 = unsafe { &mut M };
|
||||
| ^^^^^^ statics require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error: aborting due to 6 previous errors
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ error[E0658]: references in constants may only refer to immutable values
|
|||
LL | const CR: &'static mut i32 = &mut C;
|
||||
| ^^^^^^ constants require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error[E0019]: static contains unimplemented expression type
|
||||
|
|
@ -19,7 +19,7 @@ error[E0658]: references in statics may only refer to immutable values
|
|||
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
||||
| ^^^^^^ statics require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error[E0596]: cannot borrow immutable static item `X` as mutable
|
||||
|
|
@ -34,7 +34,7 @@ error[E0658]: references in statics may only refer to immutable values
|
|||
LL | static CONST_REF: &'static mut i32 = &mut C;
|
||||
| ^^^^^^ statics require immutable values
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/57349
|
||||
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
||||
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
||||
|
||||
error: aborting due to 5 previous errors
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ error[E0658]: comparing raw pointers inside static
|
|||
LL | static BAZ: bool = unsafe { (&FOO as *const i32) == (&BAR as *const i32) };
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/53020
|
||||
= note: see issue #53020 <https://github.com/rust-lang/rust/issues/53020> for more information
|
||||
= help: add `#![feature(const_compare_raw_pointers)]` to the crate attributes to enable
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ error[E0658]: dereferencing raw pointers in constants is unstable
|
|||
LL | const VALUE: u8 = unsafe { *REG_ADDR };
|
||||
| ^^^^^^^^^
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/51911
|
||||
= note: see issue #51911 <https://github.com/rust-lang/rust/issues/51911> for more information
|
||||
= help: add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ LL | | Bar(u64),
|
|||
LL | | }
|
||||
| |_^
|
||||
|
|
||||
= note: for more information, see https://github.com/rust-lang/rust/issues/56071
|
||||
= note: see issue #56071 <https://github.com/rust-lang/rust/issues/56071> for more information
|
||||
= help: add `#![feature(repr128)]` to the crate attributes to enable
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue