about summary refs log tree commit diff
path: root/tests/ui/env-macro/env-env.rs
blob: 18226256b648773dd9335948d0018edc12a3e4c4 (plain)
1
2
3
4
5
//@ compile-flags: --env-set FOO=123abc -Zunstable-options
//@ run-pass
fn main() {
    assert_eq!(env!("FOO"), "123abc");
}