]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/issue_4266.stderr
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / issue_4266.stderr
CommitLineData
f20569fa
XL
1error: explicit lifetimes given in parameter types where they could be elided (or replaced with `'_` if needed by type declaration)
2 --> $DIR/issue_4266.rs:4:1
3 |
4LL | async fn sink1<'a>(_: &'a str) {} // lint
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
8
9error: 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 |
12LL | async fn one_to_one<'a>(s: &'a str) -> &'a str {
13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15error: aborting due to 2 previous errors
16