rust/tests/ui/inference/issue-83606.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
415 B
Plaintext
Raw Normal View History

error[E0282]: type annotations needed for `[usize; N]`
2022-02-14 12:25:26 +00:00
--> $DIR/issue-83606.rs:8:9
|
LL | let _ = foo("foo");
2022-02-14 12:25:26 +00:00
| ^
|
2023-04-07 08:07:11 +00:00
help: consider giving this pattern a type, where the value of const parameter `N` is specified
2022-02-14 12:25:26 +00:00
|
LL | let _: [usize; N] = foo("foo");
2022-02-14 12:25:26 +00:00
| ++++++++++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.