mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
7 lines
195 B
Rust
7 lines
195 B
Rust
// ignore-windows: TODO env var emulation stubbed out on Windows
|
|
// compile-flags: -Zmiri-disable-isolation
|
|
|
|
fn main() {
|
|
assert_eq!(std::env::var("MIRI_ENV_VAR_TEST"), Ok("0".to_owned()));
|
|
}
|