7 lines
108 B
Rust
7 lines
108 B
Rust
//error-pattern: no mir for `std
|
|
|
|
fn main() {
|
|
let x = std::env::args();
|
|
assert_eq!(x.count(), 1);
|
|
}
|