]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-39175.rs
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[rust.git] / src / test / ui / issues / issue-39175.rs
1 // This test ignores some platforms as the particular extension trait used
2 // to demonstrate the issue is only available on unix. This is fine as
3 // the fix to suggested paths is not platform-dependent and will apply on
4 // these platforms also.
5
6 // ignore-windows
7 // ignore-emscripten
8 // ignore-sgx no processes
9
10 use std::process::Command;
11 // use std::os::unix::process::CommandExt;
12
13 fn main() {
14     Command::new("echo").arg("hello").exec();
15 //~^ ERROR no method named `exec`
16 }