mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-01 23:31:32 +00:00
9 lines
139 B
Rust
9 lines
139 B
Rust
// Don't allow tool_lints, which aren't scoped
|
|
|
|
|
|
#![deny(unknown_lints)]
|
|
|
|
#![deny(clippy)] //~ ERROR: unknown lint: `clippy`
|
|
|
|
fn main() {}
|