mirror of https://github.com/rust-lang/rust.git
17 lines
567 B
Rust
17 lines
567 B
Rust
// This test ignores some platforms as the particular extension trait used
|
|
// to demonstrate the issue is only available on unix. This is fine as
|
|
// the fix to suggested paths is not platform-dependent and will apply on
|
|
// these platforms also.
|
|
|
|
//@ run-rustfix
|
|
//@ only-unix (the diagnostics is influenced by `use std::os::unix::process::CommandExt;`)
|
|
|
|
use std::os::unix::process::CommandExt;
|
|
use std::process::Command;
|
|
// use std::os::unix::process::CommandExt;
|
|
|
|
fn main() {
|
|
let _ = Command::new("echo").arg("hello").exec();
|
|
//~^ ERROR no method named `exec`
|
|
}
|