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