rust/tests/compile-fail/env_args.rs

7 lines
108 B
Rust
Raw Normal View History

2016-06-17 08:48:15 -05:00
//error-pattern: no mir for `std
fn main() {
let x = std::env::args();
assert_eq!(x.count(), 1);
}