mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
303 B
Rust
18 lines
303 B
Rust
#![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() {}
|