mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
387 B
Rust
14 lines
387 B
Rust
#![feature(lint_reasons)]
|
|
#![deny(clippy::allow_attributes_without_reason)]
|
|
|
|
// These should trigger the lint
|
|
#[allow(dead_code)]
|
|
#[allow(dead_code, deprecated)]
|
|
// These should be fine
|
|
#[allow(dead_code, reason = "This should be allowed")]
|
|
#[warn(dyn_drop, reason = "Warnings can also have reasons")]
|
|
#[warn(deref_nullptr)]
|
|
#[deny(deref_nullptr)]
|
|
#[forbid(deref_nullptr)]
|
|
|
|
fn main() {}
|