rust/tests/ui/lint/lint-forbid-attr.rs
2023-01-11 09:32:08 +00:00

8 lines
143 B
Rust

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