summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-72253.rs
blob: 1446a796fa0d5ba81825cad5d9e846dfd8bcd510 (plain)
1
2
3
4
5
6
fn main() {
    let a = std::process::Command::new("echo")
        .arg("1")
        ,arg("2") //~ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
        .output();
}