summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-66706.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/issues/issue-66706.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-66706.stderr')
-rw-r--r--src/test/ui/issues/issue-66706.stderr62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-66706.stderr b/src/test/ui/issues/issue-66706.stderr
new file mode 100644
index 000000000..1c55560cb
--- /dev/null
+++ b/src/test/ui/issues/issue-66706.stderr
@@ -0,0 +1,62 @@
+error: expected `,`, found `&`
+ --> $DIR/issue-66706.rs:2:16
+ |
+LL | [0; [|_: _ &_| ()].len()]
+ | -^ expected `,`
+ | |
+ | help: missing `,`
+
+error: expected identifier, found reserved identifier `_`
+ --> $DIR/issue-66706.rs:9:20
+ |
+LL | [0; [|f @ &ref _| {} ; 0 ].len() ];
+ | ^ expected identifier, found reserved identifier
+
+error: expected `,`, found `&`
+ --> $DIR/issue-66706.rs:14:17
+ |
+LL | [0; [|&_: _ &_| {}; 0 ].len()]
+ | -^ expected `,`
+ | |
+ | help: missing `,`
+
+error: expected identifier, found reserved identifier `_`
+ --> $DIR/issue-66706.rs:20:26
+ |
+LL | [0; match [|f @ &ref _| () ] {} ]
+ | ^ expected identifier, found reserved identifier
+
+error[E0282]: type annotations needed
+ --> $DIR/issue-66706.rs:2:11
+ |
+LL | [0; [|_: _ &_| ()].len()]
+ | ^ cannot infer type
+
+error[E0308]: mismatched types
+ --> $DIR/issue-66706.rs:2:5
+ |
+LL | fn a() {
+ | - help: try adding a return type: `-> [i32; _]`
+LL | [0; [|_: _ &_| ()].len()]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
+
+error[E0308]: mismatched types
+ --> $DIR/issue-66706.rs:14:5
+ |
+LL | fn c() {
+ | - help: try adding a return type: `-> [i32; _]`
+LL | [0; [|&_: _ &_| {}; 0 ].len()]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
+
+error[E0308]: mismatched types
+ --> $DIR/issue-66706.rs:20:5
+ |
+LL | fn d() {
+ | - help: try adding a return type: `-> [i32; _]`
+LL | [0; match [|f @ &ref _| () ] {} ]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
+
+error: aborting due to 8 previous errors
+
+Some errors have detailed explanations: E0282, E0308.
+For more information about an error, try `rustc --explain E0282`.