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