mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 20:23:59 +00:00
14 lines
312 B
Plaintext
14 lines
312 B
Plaintext
|
warning: unused import: `std::option`
|
||
|
--> $DIR/bad-lint-cap3.rs:17:5
|
||
|
|
|
||
|
LL | use std::option; //~ WARN
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/bad-lint-cap3.rs:14:9
|
||
|
|
|
||
|
LL | #![deny(warnings)]
|
||
|
| ^^^^^^^^
|
||
|
= note: #[warn(unused_imports)] implied by #[warn(warnings)]
|
||
|
|