]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/parser/expr-as-stmt.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / parser / expr-as-stmt.stderr
index d4f64a7de5bcff2096eada7938f4e57ae4ec2846..858b4e8db0547f2d1a3f6b1f0550af5008ad9d44 100644 (file)
@@ -200,7 +200,7 @@ LL |     { true } || { true }
    |              ^^^^^^^^^^^ expected `bool`, found closure
    |
    = note: expected type `bool`
-           found closure `[closure@$DIR/expr-as-stmt.rs:51:14: 51:25]`
+           found closure `[closure@$DIR/expr-as-stmt.rs:51:14: 51:16]`
 help: use parentheses to call this closure
    |
 LL |     { true } (|| { true })()