]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tool_lints-fail.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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() {}