mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-03 01:16:14 +03:00
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);
|
|
}
|