rust/tests/ui/const-generics/issues/issue-83249.stderr
2023-01-11 09:32:08 +00:00

15 lines
348 B
Plaintext

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`.