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