2019-09-18 06:37:41 +00:00
|
|
|
error: this function could have a `#[must_use]` attribute
|
2024-01-11 16:19:53 +00:00
|
|
|
--> $DIR/must_use_candidates.rs:11:1
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn pure(i: u8) -> u8 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn pure(i: u8) -> u8`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::must-use-candidate` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::must_use_candidate)]`
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
error: this method could have a `#[must_use]` attribute
|
2024-01-11 16:19:53 +00:00
|
|
|
--> $DIR/must_use_candidates.rs:16:5
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn inherent_pure(&self) -> u8 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn inherent_pure(&self) -> u8`
|
|
|
|
|
|
|
|
error: this function could have a `#[must_use]` attribute
|
2024-01-11 16:19:53 +00:00
|
|
|
--> $DIR/must_use_candidates.rs:47:1
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn with_marker(_d: std::marker::PhantomData<&mut u32>) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn with_marker(_d: std::marker::PhantomData<&mut u32>) -> bool`
|
|
|
|
|
|
|
|
error: this function could have a `#[must_use]` attribute
|
2024-01-11 16:19:53 +00:00
|
|
|
--> $DIR/must_use_candidates.rs:59:1
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn rcd(_x: Rc<u32>) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn rcd(_x: Rc<u32>) -> bool`
|
|
|
|
|
|
|
|
error: this function could have a `#[must_use]` attribute
|
2024-01-11 16:19:53 +00:00
|
|
|
--> $DIR/must_use_candidates.rs:67:1
|
2019-09-18 06:37:41 +00:00
|
|
|
|
|
|
|
|
LL | pub fn arcd(_x: Arc<u32>) -> bool {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn arcd(_x: Arc<u32>) -> bool`
|
|
|
|
|
2019-11-12 22:36:22 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2019-09-18 06:37:41 +00:00
|
|
|
|