rustc/tests/ui/lint/lint-forbid-attr.rs
2023-08-02 10:33:26 +02:00

8 lines
143 B
Rust

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