mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
356 B
Text
13 lines
356 B
Text
error: generic args in patterns require the turbofish syntax
|
|
--> $DIR/pat-lt-bracket-4.rs:8:12
|
|
|
|
|
LL | Foo<T>::A(value) => value,
|
|
| ^
|
|
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
|
|
|
|
LL | Foo::<T>::A(value) => value,
|
|
| ++
|
|
|
|
error: aborting due to previous error
|
|
|