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
140 B
Rust
Raw Normal View History

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