rustc/tests/ui/lint/lint-forbid-attr.rs
2024-06-19 10:24:51 +02:00

7 lines
101 B
Rust

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