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