summaryrefslogtreecommitdiff
path: root/tests/ui/lint/unused_import_warning_issue_45268.stderr
blob: fa8699abcbde6aa1d0f8655e90d18d90d71df4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
   |     ^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/unused_import_warning_issue_45268.rs:3:9
   |
LL | #![warn(unused_imports)] // Warning explanation here, it's OK
   |         ^^^^^^^^^^^^^^

warning: 1 warning emitted