mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
448 B
Plaintext
16 lines
448 B
Plaintext
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
|
|
|