2023-08-01 10:30:40 -05:00
|
|
|
error: generic args in patterns require the turbofish syntax
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $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
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-10-20 15:36:17 -05:00
|
|
|
|