mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
17 lines
478 B
Rust
17 lines
478 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.
|
|
|
|
// ignore-windows
|
|
// ignore-emscripten
|
|
// ignore-sgx no processes
|
|
|
|
use std::process::Command;
|
|
// use std::os::unix::process::CommandExt;
|
|
|
|
fn main() {
|
|
Command::new("echo").arg("hello").exec();
|
|
//~^ ERROR no method named `exec`
|
|
}
|