Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-72253.rs
blob: 1446a796fa0d5ba81825cad5d9e846dfd8bcd510 [
file
] [
log
] [
blame
]
fn
main
()
{
let
a
=
std
::
process
::
Command
::
new
(
"echo"
)
.
arg
(
"1"
)
,
arg
(
"2"
)
//~ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
.
output
();
}