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

7 lines
172 B
Rust

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