rust/tests/ui/proc-macro/env.rs

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

18 lines
293 B
Rust
Raw Normal View History

// aux-build:env.rs
// run-pass
// rustc-env: THE_CONST=1
// compile-flags: -Zunstable-options --env THE_CONST=12 --env ANOTHER=4
#![crate_name = "foo"]
extern crate env;
use env::generate_const;
generate_const!();
fn main() {
assert_eq!(THE_CONST, 12);
assert_eq!(ANOTHER, 1);
}