summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/multispan-import-lint.stderr
blob: 4a955d1b31f58e0a67e198094b5a2f944ef054a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
warning: unused imports: `Eq`, `Ord`, `PartialEq`, `PartialOrd`
  --> $DIR/multispan-import-lint.rs:5:16
   |
LL | use std::cmp::{Eq, Ord, min, PartialEq, PartialOrd};
   |                ^^  ^^^       ^^^^^^^^^  ^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/multispan-import-lint.rs:3:9
   |
LL | #![warn(unused)]
   |         ^^^^^^
   = note: `#[warn(unused_imports)]` implied by `#[warn(unused)]`

warning: 1 warning emitted