blob: 362b8554b2fcb91617bc1a4c371c44753b4928a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0282]: type annotations needed
--> $DIR/issue-83249.rs:19:9
|
LL | let _ = foo([0; 1]);
| ^
|
help: consider giving this pattern a type
|
LL | let _: _ = foo([0; 1]);
| +++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.
|