about summary refs log tree commit diff
path: root/tests/ui/issues/issue-39175.rs
blob: ddba8052b5edf0a461960dc3d7ec8afb2730c8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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`
}