2022-03-23 02:54:07 -05:00
|
|
|
warning: taking a mutable reference to a `const` item
|
2023-05-16 23:05:46 -05:00
|
|
|
--> $DIR/thir-constparam-temp.rs:16:5
|
2022-03-23 02:54:07 -05:00
|
|
|
|
|
|
|
|
LL | YIKES.mut_self()
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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: mutable reference created due to call to this method
|
2023-05-16 23:05:46 -05:00
|
|
|
--> $DIR/thir-constparam-temp.rs:12:5
|
2022-03-23 02:54:07 -05:00
|
|
|
|
|
|
|
|
LL | fn mut_self(&mut self) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
note: `const` item defined here
|
2023-05-16 23:05:46 -05:00
|
|
|
--> $DIR/thir-constparam-temp.rs:15:8
|
2022-03-23 02:54:07 -05:00
|
|
|
|
|
|
|
|
LL | fn foo<const YIKES: Yikes>() {
|
2022-04-04 14:16:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[warn(const_item_mutation)]` on by default
|
2022-03-23 02:54:07 -05:00
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|