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
356 B
Plaintext
Raw Normal View History

2019-04-12 11:42:52 -07: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 23:57:38 +00:00
note: the lint level is defined here
2019-04-12 11:42:52 -07:00
--> $DIR/issue-59896.rs:1:9
|
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error