summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/needless_lifetimes_impl_trait.stderr
blob: d68bbe78802136ab5b103f95955729e34c0ffafb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: explicit lifetimes given in parameter types where they could be elided (or replaced with `'_` if needed by type declaration)
  --> $DIR/needless_lifetimes_impl_trait.rs:15:5
   |
LL |     fn baz<'a>(&'a self) -> impl Foo + 'a {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/needless_lifetimes_impl_trait.rs:1:9
   |
LL | #![deny(clippy::needless_lifetimes)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error