blob: 1446a796fa0d5ba81825cad5d9e846dfd8bcd510 [file] [log] [blame] [edit]
fn main() {
let a = std::process::Command::new("echo")
.arg("1")
,arg("2") //~ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
.output();
}