summary refs log tree commit diff
path: root/tests/ui/extenv/extenv-not-env.rs
blob: b0355e073e40e25c6fc8f884e36c0be0d5b6eb9c (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());
}