rust/tests/ui/lint/unused/issue-59896.stderr

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

18 lines
358 B
Plaintext
Raw Normal View History

2019-04-12 13:42:52 -05:00
error: the item `S` is imported redundantly
--> $DIR/issue-59896.rs:6:9
|
LL | struct S;
| --------- the item `S` is already defined here
...
LL | use S;
| ^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2019-04-12 13:42:52 -05:00
--> $DIR/issue-59896.rs:1:9
|
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: aborting due to 1 previous error
2019-04-12 13:42:52 -05:00