summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-39175.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-39175.rs')
-rw-r--r--src/test/ui/issues/issue-39175.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/issues/issue-39175.rs b/src/test/ui/issues/issue-39175.rs
deleted file mode 100644
index 3866e0651..000000000
--- a/src/test/ui/issues/issue-39175.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// 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`
-}