summaryrefslogtreecommitdiffstats
path: root/tests/ui/tool_lints-fail.rs
blob: 5cbd63be597fa3bf818f9a6e4dc57d479e86149c (plain)
1
2
3
4
5
6
7
8
// Don't allow tool_lints, which aren't scoped


#![deny(unknown_lints)]

#![deny(clippy)] //~ ERROR: unknown lint: `clippy`

fn main() {}