2019-04-30 08:59:29 -05:00
|
|
|
warning: unused import: `test::Unused`
|
|
|
|
--> $DIR/unused_import_warning_issue_45268.rs:26:5
|
|
|
|
|
|
|
|
|
LL | use test::Unused; // This is really unused, so warning is OK
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-04-30 08:59:29 -05:00
|
|
|
--> $DIR/unused_import_warning_issue_45268.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![warn(unused_imports)] // Warning explanation here, it's OK
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
warning: 1 warning emitted
|
|
|
|
|