blob: 0193345e5c8c5ccfe21af83af7614e246ad9aae4 [file] [log] [blame] [edit]
//@ check-pass
// Empty (and reason-only) lint attributes are legal—although we may want to
// lint them in the future (Issue #55112).
#![allow()]
#![warn(reason = "observationalism")]
#[forbid()]
fn devoir() {}
#[deny(reason = "ultion")]
fn waldgrave() {}
fn main() {}