2022-08-06 14:34:44 -04:00
|
|
|
//@ignore-target-windows: home_dir is not supported on Windows
|
2022-08-06 08:17:19 -04:00
|
|
|
//@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();
|
|
|
|
}
|