]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool_lints-fail.rs
Auto merge of #87150 - rusticstuff:simplify_wrapping_neg, r=m-ou-se
[rust.git] / src / test / ui / tool_lints-fail.rs
1 // Don't allow tool_lints, which aren't scoped
2
3
4 #![deny(unknown_lints)]
5
6 #![deny(clippy)] //~ ERROR: unknown lint: `clippy`
7
8 fn main() {}