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