5 lines
139 B
Rust
5 lines
139 B
Rust
//@ compile-flags: -F deprecated
|
|
|
|
#[allow(deprecated)] //~ ERROR allow(deprecated) incompatible with previous forbid [E0453]
|
|
fn main() {
|
|
}
|