blob: c1b8e0825143bdb0845979e79b7bc80a5f80b8ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
// exec-env:TEST_EXEC_ENV=22
// ignore-cloudabi no env vars
// 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()));
}
|