2020-03-26 16:10:58 +00:00
|
|
|
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
|
|
|
|
|
2020-03-27 10:56:02 +02:00
|
|
|
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
|
|
|
|
|
2020-03-26 16:10:58 +00:00
|
|
|
error[E0282]: type annotations needed
|
|
|
|
--> $DIR/issue-66706.rs:2:11
|
|
|
|
|
|
|
|
|
LL | [0; [|_: _ &_| ()].len()]
|
2022-02-14 13:25:26 +01:00
|
|
|
| ^ cannot infer type
|
2020-03-26 16:10:58 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-66706.rs:2:5
|
|
|
|
|
|
|
|
|
LL | fn a() {
|
2021-12-15 22:59:32 +00:00
|
|
|
| - help: try adding a return type: `-> [i32; _]`
|
2020-03-26 16:10:58 +00:00
|
|
|
LL | [0; [|_: _ &_| ()].len()]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
|
|
|
|
|
2020-03-27 10:56:02 +02:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-66706.rs:14:5
|
|
|
|
|
|
|
|
|
LL | fn c() {
|
2021-12-15 22:59:32 +00:00
|
|
|
| - help: try adding a return type: `-> [i32; _]`
|
2020-03-27 10:56:02 +02:00
|
|
|
LL | [0; [|&_: _ &_| {}; 0 ].len()]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-66706.rs:20:5
|
|
|
|
|
|
|
|
|
LL | fn d() {
|
2021-12-15 22:59:32 +00:00
|
|
|
| - help: try adding a return type: `-> [i32; _]`
|
2020-03-27 10:56:02 +02:00
|
|
|
LL | [0; match [|f @ &ref _| () ] {} ]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[{integer}; _]`
|
|
|
|
|
2020-05-21 12:49:38 -07:00
|
|
|
error: aborting due to 8 previous errors
|
2020-03-26 16:10:58 +00:00
|
|
|
|
2020-05-21 12:49:38 -07:00
|
|
|
Some errors have detailed explanations: E0282, E0308.
|
2020-03-26 16:10:58 +00:00
|
|
|
For more information about an error, try `rustc --explain E0282`.
|