summaryrefslogtreecommitdiffstats
path: root/tests/ui/did_you_mean/issue-114112.stderr
blob: 071c9614f13b6eedd58f14dd05f8fccc74f0d732 (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 1 previous error