]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool_lints-fail.rs
Rollup merge of #89945 - JohnTitor:we-now-specialize-clone-from-slice, r=the8472
[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() {}