rust/tests/ui/underscore-imports/basic.stderr

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

21 lines
405 B
Plaintext
Raw Normal View History

warning: unused import: `m::Tr1 as _`
2018-12-25 15:56:47 +00:00
--> $DIR/basic.rs:26:9
|
2019-03-09 12:03:44 +00:00
LL | use m::Tr1 as _;
| ^^^^^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/basic.rs:4:9
|
LL | #![warn(unused_imports, unused_extern_crates)]
| ^^^^^^^^^^^^^^
warning: unused import: `S as _`
2018-12-25 15:56:47 +00:00
--> $DIR/basic.rs:27:9
|
2019-03-09 12:03:44 +00:00
LL | use S as _;
| ^^^^^^
warning: 2 warnings emitted