mirror of https://github.com/rust-lang/rust
14 lines
325 B
Plaintext
14 lines
325 B
Plaintext
error: generic args in patterns require the turbofish syntax
|
|
--> $DIR/issue-22712.rs:6:12
|
|
|
|
|
LL | let Foo<Vec<u8>>
|
|
| ^
|
|
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
|
|
|
|
LL | let Foo::<Vec<u8>>
|
|
| ++
|
|
|
|
error: aborting due to 1 previous error
|
|
|