rust/tests/ui/extenv/extenv-not-defined-default.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
130 B
Rust
Raw Normal View History

2014-02-05 16:33:10 -06:00
fn main() {
env!("__HOPEFULLY_NOT_DEFINED__");
//~^ ERROR: environment variable `__HOPEFULLY_NOT_DEFINED__` not defined
}