rust/tests/ui/parser/issues/issue-22712.stderr

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

14 lines
325 B
Plaintext
Raw Normal View History

2023-08-01 10:30:40 -05:00
error: generic args in patterns require the turbofish syntax
--> $DIR/issue-22712.rs:6:12
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let Foo<Vec<u8>>
2023-08-01 10:30:40 -05:00
| ^
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
LL | let Foo::<Vec<u8>>
| ++
2018-10-20 15:36:17 -05:00
error: aborting due to 1 previous error
2018-10-20 15:36:17 -05:00