rust/tests/pass/env/home.rs

10 lines
266 B
Rust
Raw Normal View History

2022-08-06 13:34:44 -05:00
//@ignore-target-windows: home_dir is not supported on Windows
//@compile-flags: -Zmiri-disable-isolation
use std::env;
fn main() {
env::remove_var("HOME"); // make sure we enter the interesting codepath
#[allow(deprecated)]
env::home_dir().unwrap();
}