]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/parser/issue-72253.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / parser / issue-72253.rs
index 6f9af73b039e4aa28e0b463edbce423b00797eb0..1446a796fa0d5ba81825cad5d9e846dfd8bcd510 100644 (file)
@@ -1,6 +1,6 @@
 fn main() {
     let a = std::process::Command::new("echo")
         .arg("1")
-        ,arg("2") //~ ERROR expected one of `.`, `;`, `?`, or an operator, found `,`
+        ,arg("2") //~ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
         .output();
 }