rust/tests/ui/extenv/extenv-env.rs

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

6 lines
119 B
Rust
Raw Normal View History

2023-11-27 06:47:43 -06:00
// compile-flags: --env FOO=123abc -Zunstable-options
// run-pass
fn main() {
assert_eq!(env!("FOO"), "123abc");
}