blob: b12b4064990bd1e76aab1a0a7bb3b1677589f7e9 [file] [log] [blame]
#![feature(lint_reasons)]
//@ 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() {}