blob: 9a0ec253322e41e6ff42bd5dda7cc2d12ce9f95f [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() {}