rust/tests/ui/lint/lint-forbid-attr.rs

8 lines
143 B
Rust

#![forbid(deprecated)]
#[allow(deprecated)]
//~^ ERROR allow(deprecated) incompatible
//~| ERROR allow(deprecated) incompatible
fn main() {
}