rust/tests/ui/lint/force-warn/allowed-by-default-lint.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
396 B
Plaintext
Raw Normal View History

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) {}
| ^^^ 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`
help: indicate the anonymous lifetime
|
LL | fn foo(x: &Foo<'_>) {}
| ++++
2021-05-27 17:19:39 +00:00
warning: 1 warning emitted