]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool_lints-fail.rs
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[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() {}