summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/return_self_not_must_use.stderr
blob: 94be87dfa31c73c85a57a262c203d162252cc098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
error: missing `#[must_use]` attribute on a method returning `Self`
  --> $DIR/return_self_not_must_use.rs:8:5
   |
LL |     fn what(&self) -> Self;
   |     ^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::return-self-not-must-use` implied by `-D warnings`
   = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type

error: missing `#[must_use]` attribute on a method returning `Self`
  --> $DIR/return_self_not_must_use.rs:18:5
   |
LL | /     pub fn foo(&self) -> Self {
LL | |         Self
LL | |     }
   | |_____^
   |
   = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type

error: missing `#[must_use]` attribute on a method returning `Self`
  --> $DIR/return_self_not_must_use.rs:21:5
   |
LL | /     pub fn bar(self) -> Self {
LL | |         self
LL | |     }
   | |_____^
   |
   = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type

error: aborting due to 3 previous errors