summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/pat-lt-bracket-4.stderr
blob: 92d16564ab4f96f3a27976ecf5dabe5209d90406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 1 previous error