rust/tests/ui/parser/issues/issue-72253.rs
2023-01-11 09:32:08 +00:00

7 lines
191 B
Rust

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