2022-01-20 19:07:54 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared type `Command`
|
2022-03-11 21:57:34 +00:00
|
|
|
--> $DIR/amputate-span.rs:49:5
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
LL | Command::new("git");
|
2022-10-27 06:36:07 +00:00
|
|
|
| ^^^^^^^ use of undeclared type `Command`
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::process::Command;
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0433]: failed to resolve: use of undeclared type `Command`
|
2022-03-11 21:57:34 +00:00
|
|
|
--> $DIR/amputate-span.rs:63:9
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
LL | Command::new("git");
|
2022-10-27 06:36:07 +00:00
|
|
|
| ^^^^^^^ use of undeclared type `Command`
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
help: consider importing this struct
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::process::Command;
|
2022-01-20 19:07:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|