about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/shims/env/var-without-isolation.rs
blob: 3d7461eecfe88b3e4e3ab779ed66e961d1243a1d (plain)
1
2
3
4
5
//@compile-flags: -Zmiri-disable-isolation

fn main() {
    assert_eq!(std::env::var("MIRI_ENV_VAR_TEST"), Ok("0".to_owned()));
}