rust/tests/ui/did_you_mean/issue-114112.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
332 B
Plaintext
Raw Normal View History

2023-08-01 15:30:40 +00: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) => {
| ++
error: aborting due to 1 previous error
2023-08-01 15:30:40 +00:00