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