summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/allow_attributes_without_reason.rs
blob: 1a0d4e886576e07695ecb5083bdf456b10163e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![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() {}