rust/tests/ui/type-alias/issue-37515.stderr

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

16 lines
326 B
Plaintext
Raw Normal View History

warning: type alias `Z` is never used
2022-06-22 18:33:59 +00:00
--> $DIR/issue-37515.rs:5:6
2018-07-15 21:11:54 +00:00
|
2019-05-28 18:46:13 +00:00
LL | type Z = dyn for<'x> Send;
2022-06-22 18:33:59 +00:00
| ^
2018-07-15 21:11:54 +00:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-37515.rs:3:9
2018-07-15 21:11:54 +00:00
|
LL | #![warn(unused)]
| ^^^^^^
= note: `#[warn(dead_code)]` implied by `#[warn(unused)]`
2018-07-15 21:11:54 +00:00
warning: 1 warning emitted