]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/bad-lint-cap3.rs
Merge commit '2bb3996244cf1b89878da9e39841e9f6bf061602' into sync_cg_clif-2022-12-14
[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() {}