]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-72253.rs
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.git] / src / test / ui / parser / issues / issue-72253.rs
1 fn main() {
2     let a = std::process::Command::new("echo")
3         .arg("1")
4         ,arg("2") //~ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
5         .output();
6 }