rust/tests/ui/error-codes/E0017.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.7 KiB
Plaintext
Raw Normal View History

warning: taking a mutable reference to a `const` item
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:8:30
|
LL | const CR: &'static mut i32 = &mut C;
| ^^^^^^
|
= note: each usage of a `const` item creates a new temporary
= note: the mutable reference will refer to this temporary, not the original `const` item
note: `const` item defined here
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:5:1
|
LL | const C: i32 = 2;
2022-02-13 15:27:59 +00:00
| ^^^^^^^^^^^^
2022-09-18 15:55:36 +00:00
= note: `#[warn(const_item_mutation)]` on by default
2021-01-16 18:05:51 +00:00
error[E0764]: mutable references are not allowed in the final value of constants
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:8:30
2018-02-08 03:35:35 +00:00
|
2019-03-09 12:03:44 +00:00
LL | const CR: &'static mut i32 = &mut C;
| ^^^^^^
2018-02-08 03:35:35 +00:00
error[E0596]: cannot borrow immutable static item `X` as mutable
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:11:39
2018-02-08 03:35:35 +00:00
|
2019-03-09 12:03:44 +00:00
LL | static STATIC_REF: &'static mut i32 = &mut X;
| ^^^^^^ cannot borrow as mutable
2018-02-08 03:35:35 +00:00
warning: taking a mutable reference to a `const` item
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:13:38
|
LL | static CONST_REF: &'static mut i32 = &mut C;
| ^^^^^^
|
= note: each usage of a `const` item creates a new temporary
= note: the mutable reference will refer to this temporary, not the original `const` item
note: `const` item defined here
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:5:1
|
LL | const C: i32 = 2;
2022-02-13 15:27:59 +00:00
| ^^^^^^^^^^^^
2021-01-16 18:05:51 +00:00
error[E0764]: mutable references are not allowed in the final value of statics
2024-08-17 12:19:34 +00:00
--> $DIR/E0017.rs:13:38
2018-02-08 03:35:35 +00:00
|
2019-03-09 12:03:44 +00:00
LL | static CONST_REF: &'static mut i32 = &mut C;
| ^^^^^^
2018-02-08 03:35:35 +00:00
error: aborting due to 3 previous errors; 2 warnings emitted
2018-02-08 03:35:35 +00:00
Some errors have detailed explanations: E0596, E0764.
For more information about an error, try `rustc --explain E0596`.