Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion tests/ui/many_single_char_names.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,15 @@ error: 8 bindings with single-character names in scope
LL | let (a, b, c, d, e, f, g, h) = unimplemented!();
| ^ ^ ^ ^ ^ ^ ^ ^

error: aborting due to 5 previous errors
error[E0282]: type annotations needed for `(_, _, _, _, _, _, _, _)`
--> $DIR/many_single_char_names.rs:32:10
|
LL | let (a, b, c, d, e, f, g, h) = unimplemented!();
| -^----------------------
| ||
| |cannot infer type
| consider giving this pattern the explicit type `(_, _, _, _, _, _, _, _)`, with the type parameters specified

error: aborting due to 6 previous errors

For more information about this error, try `rustc --explain E0282`.