rust/tests/ui/env-macro/env-env-overload.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
269 B
Rust
Raw Normal View History

2023-11-27 06:47:43 -06:00
//@ run-pass
//@ rustc-env:MY_VAR=tadam
//@ compile-flags: --env-set MY_VAR=123abc -Zunstable-options
2023-11-27 06:47:43 -06:00
// This test ensures that variables provided with `--env` take precedence over
// variables from environment.
fn main() {
assert_eq!(env!("MY_VAR"), "123abc");
}