rust/src/test/ui/tool_lints-fail.rs

9 lines
139 B
Rust
Raw Normal View History

2018-07-03 12:23:20 +02:00
// Don't allow tool_lints, which aren't scoped
2018-07-03 12:23:20 +02:00
#![deny(unknown_lints)]
#![deny(clippy)] //~ ERROR: unknown lint: `clippy`
fn main() {}