]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/bad-lint-cap3.rs
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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() {}