blob: d76b5f72e30cf7b1de08d4f72444990f3e0c0939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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) => {
| ++
error: aborting due to previous error
|