]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/bad-lint-cap3.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / bad-lint-cap3.rs
1 // check-pass
2 // compile-flags: --cap-lints warn
3
4 #![warn(unused)]
5 #![deny(warnings)]
6
7 use std::option; //~ WARN
8
9 fn main() {}