]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/bad-lint-cap2.rs
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / lint / bad-lint-cap2.rs
1 // compile-flags: --cap-lints deny
2
3 #![warn(unused)]
4 #![deny(warnings)]
5
6 use std::option; //~ ERROR
7
8 fn main() {}