Skip to content

Commit d0b1660

Browse files
committed
1 parent d5ec41c commit d0b1660

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/ui/many_single_char_names.stderr

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,15 @@ error: 8 bindings with single-character names in scope
4747
LL | let (a, b, c, d, e, f, g, h) = unimplemented!();
4848
| ^ ^ ^ ^ ^ ^ ^ ^
4949

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

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

0 commit comments

Comments
 (0)