mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
7 lines
120 B
Rust
7 lines
120 B
Rust
//error-pattern: no mir for `std::env::args`
|
|
|
|
fn main() {
|
|
let x = std::env::args();
|
|
assert_eq!(x.count(), 1);
|
|
}
|