rust/tests/ui/underscore-imports/unused-2018.stderr

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

21 lines
397 B
Plaintext
Raw Normal View History

error: unused import: `core::any`
2018-11-27 17:58:18 -06:00
--> $DIR/unused-2018.rs:6:9
|
2019-03-09 06:03:44 -06:00
LL | use core::any;
| ^^^^^^^^^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-11-27 17:58:18 -06:00
--> $DIR/unused-2018.rs:3:9
|
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: unused import: `core`
2018-11-27 17:58:18 -06:00
--> $DIR/unused-2018.rs:10:9
|
2019-03-09 06:03:44 -06:00
LL | use core;
| ^^^^
error: aborting due to 2 previous errors