2021-05-27 17:19:39 +00:00
|
|
|
warning: hidden lifetime parameters in types are deprecated
|
2021-08-18 09:05:59 +00:00
|
|
|
--> $DIR/allowed-by-default-lint.rs:9:12
|
2021-05-27 17:19:39 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: &Foo) {}
|
2022-03-10 22:12:35 +00:00
|
|
|
| ^^^ expected lifetime parameter
|
2021-05-27 17:19:39 +00:00
|
|
|
|
|
2021-07-21 13:40:52 +00:00
|
|
|
= note: requested on the command line with `--force-warn elided-lifetimes-in-paths`
|
2022-03-10 22:12:35 +00:00
|
|
|
help: indicate the anonymous lifetime
|
2021-07-11 13:04:57 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: &Foo<'_>) {}
|
2022-03-10 22:12:35 +00:00
|
|
|
| ++++
|
2021-05-27 17:19:39 +00:00
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|