]> git.lizzy.rs Git - rust.git/blob - tests/ui/issue_4266.stderr
Add test
[rust.git] / 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:5: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:8:1
11    |
12 LL | async fn one_to_one<'a>(s: &'a str) -> &'a str { s } // lint
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to 2 previous errors
16