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