mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 17:48:10 +00:00
11 lines
469 B
Rust
11 lines
469 B
Rust
fn main() {
|
|
// Things it should warn about:
|
|
std::process::Command::new("echo").arg("-n hello").spawn().unwrap();
|
|
std::process::Command::new("cat").arg("--number file").spawn().unwrap();
|
|
|
|
// Things it should not warn about:
|
|
std::process::Command::new("echo").arg("hello world").spawn().unwrap();
|
|
std::process::Command::new("a").arg("--fmt=%a %b %c").spawn().unwrap();
|
|
std::process::Command::new("b").arg("-ldflags=-s -w").spawn().unwrap();
|
|
}
|