mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +00:00
11 lines
178 B
Rust
11 lines
178 B
Rust
// Regression test for #80988
|
|
//
|
|
// check-pass
|
|
|
|
#![forbid(warnings)]
|
|
|
|
#[deny(warnings)]
|
|
//~^ WARNING incompatible with previous forbid
|
|
//~| WARNING being phased out
|
|
fn main() {}
|