2023-08-01 23:30:40 +08:00
|
|
|
error: generic args in patterns require the turbofish syntax
|
|
|
|
--> $DIR/issue-114112.rs:7:10
|
|
|
|
|
|
|
|
|
LL | E<i32>::A(v) => {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
|
|
|
|
|
|
|
|
LL | E::<i32>::A(v) => {
|
|
|
|
| ++
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-08-01 23:30:40 +08:00
|
|
|
|