]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool_lints-fail.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[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() {}