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

7 lines
172 B
Rust

// compile-flags: -F deprecated
#[allow(deprecated)] //~ ERROR allow(deprecated) incompatible
//~| ERROR allow(deprecated) incompatible
fn main() {
}