blob: 7491fdc8a693e413a79937c04443cdad93df9995 (
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 _: /* Type */ = foo([0; 1]);
| ++++++++++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.
|