44f9f8bc33
It warns about usages of `std::env::{set_var, remove_var}` with an automatic fix wrapping the call in an `unsafe` block.
20 lines
448 B
Rust
20 lines
448 B
Rust
//@ run-rustfix
|
|
|
|
#![deny(deprecated_safe)]
|
|
|
|
use std::env;
|
|
|
|
#[deny(unused_unsafe)]
|
|
fn main() {
|
|
env::set_var("FOO", "BAR");
|
|
//~^ ERROR call to deprecated safe function
|
|
//~| WARN this is accepted in the current edition
|
|
env::remove_var("FOO");
|
|
//~^ ERROR call to deprecated safe function
|
|
//~| WARN this is accepted in the current edition
|
|
|
|
unsafe {
|
|
env::set_var("FOO", "BAR");
|
|
env::remove_var("FOO");
|
|
}
|
|
}
|