about summary refs log tree commit diff
path: root/tests/ui/env-macro/env-not-env.rs
blob: e903eab4e96b5fd8016f7c1de6e94895878e1cb8 (plain)
1
2
3
4
5
6
7
//@ run-pass
//@ rustc-env:MY_ENV=/
// Ensures that variables not defined through `--env-set` are still available.

fn main() {
    assert!(!env!("MY_ENV").is_empty());
}