mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:39:20 +00:00
6 lines
125 B
Rust
6 lines
125 B
Rust
//@ compile-flags: --env-set FOO=123abc -Zunstable-options
|
|
//@ run-pass
|
|
fn main() {
|
|
assert_eq!(env!("FOO"), "123abc");
|
|
}
|