]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/issue_4266.stderr
Auto merge of #97944 - nikic:freebsd-update, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / issue_4266.stderr
1 error: explicit lifetimes given in parameter types where they could be elided (or replaced with `'_` if needed by type declaration)
2   --> $DIR/issue_4266.rs:3:1
3    |
4 LL | async fn sink1<'a>(_: &'a str) {} // lint
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
8
9 error: explicit lifetimes given in parameter types where they could be elided (or replaced with `'_` if needed by type declaration)
10   --> $DIR/issue_4266.rs:7:1
11    |
12 LL | async fn one_to_one<'a>(s: &'a str) -> &'a str {
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: methods called `new` usually take no `self`
16   --> $DIR/issue_4266.rs:27:22
17    |
18 LL |     pub async fn new(&mut self) -> Self {
19    |                      ^^^^^^^^^
20    |
21    = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
22    = help: consider choosing a less ambiguous name
23
24 error: aborting due to 3 previous errors
25