about summary refs log tree commit diff
path: root/tests/ui/lint/bad-lint-cap2.rs
blob: 193f967671db0d405c5f6dfa6694d5524ba05b15 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: --cap-lints deny

#![warn(unused)]
#![deny(warnings)]

use std::option; //~ ERROR

fn main() {}