]> git.proxmox.com Git - rustc.git/blame - tests/ui/issues/issue-39175.stderr
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / issues / issue-39175.stderr
CommitLineData
1b1a35ee 1error[E0599]: no method named `exec` found for mutable reference `&mut Command` in the current scope
fc512014 2 --> $DIR/issue-39175.rs:14:39
0bf4aa26
XL
3 |
4LL | Command::new("echo").arg("hello").exec();
1b1a35ee 5 | ^^^^ method not found in `&mut Command`
0bf4aa26
XL
6 |
7 = help: items from traits can only be used if the trait is in scope
e74abb32 8help: the following trait is implemented but not in scope; perhaps add a `use` for it:
0bf4aa26 9 |
353b0b11 10LL + use std::os::unix::process::CommandExt;
0bf4aa26
XL
11 |
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0599`.