mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-01 23:31:32 +00:00
11 lines
207 B
Rust
11 lines
207 B
Rust
// run-pass
|
|
// exec-env:TEST_EXEC_ENV=22
|
|
// ignore-emscripten FIXME: issue #31622
|
|
// ignore-sgx unsupported
|
|
|
|
use std::env;
|
|
|
|
pub fn main() {
|
|
assert_eq!(env::var("TEST_EXEC_ENV"), Ok("22".to_string()));
|
|
}
|