]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-72253.rs
Add inferred args to typeck
[rust.git] / src / test / ui / parser / issue-72253.rs
1 fn main() {
2     let a = std::process::Command::new("echo")
3         .arg("1")
4         ,arg("2") //~ ERROR expected one of `.`, `;`, `?`, or an operator, found `,`
5         .output();
6 }